summaryrefslogtreecommitdiff
path: root/sql-bench/server-cfg.sh
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2018-04-27 08:26:28 +0300
committerMonty <monty@mariadb.org>2018-04-30 14:05:27 +0300
commit862e602b5a5bbc79bacdac9722f1ab69d0ccf7c3 (patch)
treef643008ad3874dc8070d00989a2e82c6b45f816d /sql-bench/server-cfg.sh
parentcb16bc95ff9a7b4ce0835acf8fa6d6a06ad10c3c (diff)
downloadmariadb-git-862e602b5a5bbc79bacdac9722f1ab69d0ccf7c3.tar.gz
Added more test to sql-bench
- test-alter now correctly drops all columns - test-alter has a new test that times adding columns in middle of table - test-insert has a new test to check updates that doesn't change data - test-insert: update_with_key_prefix didn't change data. Now fixed
Diffstat (limited to 'sql-bench/server-cfg.sh')
-rw-r--r--sql-bench/server-cfg.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/sql-bench/server-cfg.sh b/sql-bench/server-cfg.sh
index 7e83b7365e3..78ad43d6b2d 100644
--- a/sql-bench/server-cfg.sh
+++ b/sql-bench/server-cfg.sh
@@ -131,6 +131,7 @@ sub new
$limits{'alter_add_multi_col'}= 1; #Have ALTER TABLE t add a int,add b int;
$limits{'alter_table'} = 1; # Have ALTER TABLE
$limits{'alter_table_dropcol'}= 1; # Have ALTER TABLE DROP column
+ $limits{'alter_table_after'}= 1; # Have ALTER TABLE .. AFTER other_column
$limits{'column_alias'} = 1; # Alias for fields in select statement.
$limits{'func_extra_%'} = 1; # Has % as alias for mod()
$limits{'func_extra_if'} = 1; # Have function if.