Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
58d02995
Commit
58d02995
authored
Jan 02, 2003
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge work:/my/mysql-4.0 into mashka.mysql.fi:/home/my/mysql-4.0
sql/ha_innodb.cc: Auto merged
parents
25e6c068
f0d4cad9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
10 deletions
+46
-10
sql-bench/crash-me.sh
sql-bench/crash-me.sh
+44
-6
sql/ha_innodb.cc
sql/ha_innodb.cc
+2
-4
No files found.
sql-bench/crash-me.sh
View file @
58d02995
...
...
@@ -48,7 +48,7 @@ require "$pwd/server-cfg" || die "Can't read Configuration file: $!\n";
$opt_server
=
"mysql"
;
$opt_host
=
"localhost"
;
$opt_database
=
"test"
;
$opt_dir
=
"limits"
;
$opt_user
=
$opt_password
=
""
;
$opt_user
=
$opt_password
=
""
;
$opt_verbose
=
""
;
$opt_debug
=
$opt_help
=
$opt_Information
=
$opt_restart
=
$opt_force
=
$opt_quick
=
0
;
$opt_log_all_queries
=
$opt_fix_limit_file
=
$opt_batch_mode
=
0
;
$opt_db_start_cmd
=
""
;
# the db server start command
...
...
@@ -67,8 +67,8 @@ $retry_limit=3;
GetOptions
(
"Information"
,
"help"
,
"server=s"
,
"debug"
,
"user=s"
,
"password=s"
,
"database=s"
,
"restart"
,
"force"
,
"quick"
,
"log-all-queries"
,
"comment=s"
,
"host=s"
,
"fix-limit-file"
,
"dir=s"
,
"db-start-cmd=s"
,
"sleep=s"
,
"suffix=s"
,
"batch-mode"
,
"config-file=s"
,
"log-queries-to-file=s"
,
"check-server"
)
||
usage
()
;
"batch-mode"
,
"config-file=s"
,
"log-queries-to-file=s"
,
"check-server"
,
"verbose!"
=>
\$
opt_verbose
)
||
usage
()
;
usage
()
if
(
$opt_help
||
$opt_Information
)
;
$opt_suffix
=
'-'
.
$opt_suffix
if
(
length
(
$opt_suffix
)
!=
0
)
;
...
...
@@ -1375,7 +1375,6 @@ if ($limits{'type_sql_date'} eq 'yes')
}
}
# Test: WEEK()
{
my
$resultat
=
"no"
;
...
...
@@ -1496,6 +1495,36 @@ if ($limits{'type_sql_date'} eq 'yes')
}
# NOT id BETWEEN a and b
if
(
$limits
{
'func_where_not_between'
}
eq
'yes'
)
{
my
$resultat
=
'error'
;
my
$err
;
my
$key
=
'not_id_between'
;
my
$prompt
=
'NOT ID BETWEEN interprets as ID NOT BETWEEN'
;
print
"
$prompt
:"
;
save_incomplete
(
$key
,
$prompt
)
;
safe_query_l
(
$key
,[
"create table crash_me_b (i int)"
,
"insert into crash_me_b values(2)"
,
"insert into crash_me_b values(5)"
])
;
$err
=
safe_query_result_l
(
$key
,
"select i from crash_me_b where not i between 1 and 3"
,
5,0
)
;
if
(
$err
eq 1
)
{
if
(
not defined
(
$last_result
))
{
$resultat
=
'no'
;
}
;
}
;
if
(
$err
eq 0
)
{
$resultat
=
'yes'
;
}
;
safe_query_l
(
$key
,[
"drop table crash_me_b"
])
;
save_config_data
(
$key
,
$resultat
,
$prompt
)
;
print
"
$resultat
\n
"
;
}
;
report
(
"LIKE on numbers"
,
"like_with_number"
,
"create table crash_q (a int,b int)"
,
...
...
@@ -2740,7 +2769,7 @@ $0 takes the following options:
--password='password'
Password for the current user.
--restart
Save states during each limit tests. This will make it possible to continue
by restarting with the same options if there is some bug in the DBI or
...
...
@@ -2766,6 +2795,10 @@ $0 takes the following options:
--sleep='time in seconds' (Default
$opt_sleep
)
Wait this long before restarting server.
--verbose
--noverbose
Log into the result file queries performed for determination parameter value
EOF
exit
(
0
)
;
}
...
...
@@ -3615,6 +3648,11 @@ sub safe_query_result_l{
sub safe_query_result
{
# result type can be
# 8 (must be empty), 2 (Any value), 0 (number)
# 1 (char, endspaces can differ), 3 (exact char), 4 (NULL)
# 5 (char with prefix), 6 (exact, errors are ignored)
# 7 (array of numbers)
my
(
$query
,
$answer
,
$result_type
)=
@_
;
my
(
$sth
,
$row
,
$result
,
$retry
)
;
undef
(
$last_result
)
;
...
...
@@ -3990,7 +4028,7 @@ sub add_log
{
my
$key
=
shift
;
my
$line
=
shift
;
$log
{
$key
}
.
=
$line
.
"
\n
"
;
$log
{
$key
}
.
=
$line
.
"
\n
"
if
(
$opt_verbose
)
;
;
}
sub save_all_config_data
...
...
sql/ha_innodb.cc
View file @
58d02995
...
...
@@ -3809,8 +3809,8 @@ innobase_map_isolation_level(
enum_tx_isolation
iso
)
/* in: MySQL isolation level code */
{
switch
(
iso
)
{
case
ISO_READ_COMMITTED
:
return
(
TRX_ISO_READ_COMMITTED
);
case
ISO_REPEATABLE_READ
:
return
(
TRX_ISO_REPEATABLE_READ
);
case
ISO_READ_COMMITTED
:
return
(
TRX_ISO_READ_COMMITTED
);
case
ISO_SERIALIZABLE
:
return
(
TRX_ISO_SERIALIZABLE
);
case
ISO_READ_UNCOMMITTED
:
return
(
TRX_ISO_READ_UNCOMMITTED
);
default:
ut_a
(
0
);
return
(
0
);
...
...
@@ -3865,11 +3865,9 @@ ha_innobase::external_lock(
trx
->
n_mysql_tables_in_use
++
;
prebuilt
->
mysql_has_locked
=
TRUE
;
if
(
thd
->
variables
.
tx_isolation
!=
ISO_REPEATABLE_READ
)
{
trx
->
isolation_level
=
innobase_map_isolation_level
(
trx
->
isolation_level
=
innobase_map_isolation_level
(
(
enum_tx_isolation
)
thd
->
variables
.
tx_isolation
);
}
if
(
trx
->
isolation_level
==
TRX_ISO_SERIALIZABLE
&&
prebuilt
->
select_lock_type
==
LOCK_NONE
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment