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
07eb2fc4
Commit
07eb2fc4
authored
Dec 28, 2002
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge akishkin@work.mysql.com:/home/bk/mysql-4.0
into mysql.com:/home/walrus/bk/40
parents
a7f0745d
ae2a2981
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
6 deletions
+44
-6
sql-bench/crash-me.sh
sql-bench/crash-me.sh
+44
-6
No files found.
sql-bench/crash-me.sh
View file @
07eb2fc4
...
...
@@ -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)"
,
...
...
@@ -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
...
...
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