diff options
author | unknown <ingo@mysql.com> | 2004-12-16 11:41:52 +0100 |
---|---|---|
committer | unknown <ingo@mysql.com> | 2004-12-16 11:41:52 +0100 |
commit | 9a2c0bd93212f08dfb1d04367df850d38006f176 (patch) | |
tree | 3e9e553a8f21b5e0d73179dff22efae24126932c /mysql-test/t/init_connect.test | |
parent | 7845f99abf1d36e972970c0fc9431956a8f4b63a (diff) | |
download | mariadb-git-9a2c0bd93212f08dfb1d04367df850d38006f176.tar.gz |
Enlarged group item key_length by a varstring length field.
Group item fields are implemented as varstrings nowadays.
Made init_connect.test robust against existing t1.
mysql-test/r/init_connect.result:
Made init_connect.test robust against existing t1.
mysql-test/t/init_connect.test:
Made init_connect.test robust against existing t1.
sql/sql_select.cc:
Enlarged group item key_length by a varstring length field.
Group item fields are implemented as varstrings nowadays.
Diffstat (limited to 'mysql-test/t/init_connect.test')
-rw-r--r-- | mysql-test/t/init_connect.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/init_connect.test b/mysql-test/t/init_connect.test index 29962abc04d..d9682eb8122 100644 --- a/mysql-test/t/init_connect.test +++ b/mysql-test/t/init_connect.test @@ -19,7 +19,7 @@ connect (con3,localhost,user_1,,); connection con3; select @a; connection con0; -set global init_connect="create table t1(a char(10));\ +set global init_connect="drop table if exists t1; create table t1(a char(10));\ insert into t1 values ('\0');insert into t1 values('abc')"; connect (con4,localhost,user_1,,); connection con4; |