diff options
author | unknown <monty@hundin.mysql.fi> | 2001-12-23 02:43:46 +0200 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-12-23 02:43:46 +0200 |
commit | 953ac1a5cf2acc464c3214e715679e61c4d18c24 (patch) | |
tree | c49964609935e7b3c7d648539cf1122a6b4a39b9 /sql-bench | |
parent | f70786085b43200a38b022c517dec14bd1041f54 (diff) | |
download | mariadb-git-953ac1a5cf2acc464c3214e715679e61c4d18c24.tar.gz |
Limit created keys to MAX_KEY_LENGTH.
Fix problem with query cache and database names
mysql-test/mysql-test-run.sh:
Portability fixes
mysql-test/r/query_cache.result:
More tests when using different databases
mysql-test/t/query_cache.test:
More tests when using different databases
sql-bench/test-wisconsin.sh:
Portability fix
sql/sql_cache.cc:
Fix problem with query cache and database names
sql/sql_parse.cc:
Remove pre and end space in query.
sql/sql_table.cc:
Limit created keys to MAX_KEY_LENGTH.
Diffstat (limited to 'sql-bench')
-rw-r--r-- | sql-bench/test-wisconsin.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql-bench/test-wisconsin.sh b/sql-bench/test-wisconsin.sh index e7e3a0f235a..adc3e5b5aa4 100644 --- a/sql-bench/test-wisconsin.sh +++ b/sql-bench/test-wisconsin.sh @@ -242,7 +242,7 @@ sub init_data { @onek= $server->create("onek", - ["unique1 int(4) NOT NULL", + ["unique1 int(5) NOT NULL", "unique2 int(4) NOT NULL", "two int(4)", "four int(4)", |