summaryrefslogtreecommitdiff
path: root/sql-bench/crash-me.sh
diff options
context:
space:
mode:
authormonty@donna.mysql.com <>2001-01-28 21:35:50 +0200
committermonty@donna.mysql.com <>2001-01-28 21:35:50 +0200
commitce2260586dc18bf2b46e5ede488db085da33edf9 (patch)
treefabb5447e17b9f0959cb83b6d88351367ca53645 /sql-bench/crash-me.sh
parent6b9a8a92c3d02f9fb66638843de16170e4a0c1a6 (diff)
downloadmariadb-git-ce2260586dc18bf2b46e5ede488db085da33edf9.tar.gz
Fixed ALTER TABLE on MERGE tables
Fixed bug in DISTINCT
Diffstat (limited to 'sql-bench/crash-me.sh')
-rw-r--r--sql-bench/crash-me.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/sql-bench/crash-me.sh b/sql-bench/crash-me.sh
index a62e042ffda..2ce5c73c9b2 100644
--- a/sql-bench/crash-me.sh
+++ b/sql-bench/crash-me.sh
@@ -38,7 +38,7 @@
# as such, and clarify ones such as "mediumint" with comments such as
# "3-byte int" or "same as xxx".
-$version="1.54";
+$version="1.55";
use DBI;
use Getopt::Long;
@@ -1315,7 +1315,7 @@ report("default value for column",'create_default',
"drop table crash_q $drop_attr");
report("default value function for column",'create_default_func',
- "create table crash_q (q integer not null,q1 integer default (1+1)",
+ "create table crash_q (q integer not null,q1 integer default (1+1))",
"drop table crash_q $drop_attr");
report("temporary tables",'temporary_table',
@@ -1696,7 +1696,7 @@ if (!report("drop table with cascade/restrict","drop_restrict",
report("-- as comment (ANSI)","comment_--",
"select * from crash_me -- Testing of comments");
-report("// as comment (ANSI)","comment_//",
+report("// as comment","comment_//",
"select * from crash_me // Testing of comments");
report("# as comment","comment_#",
"select * from crash_me # Testing of comments");