diff options
author | monty@mashka.mysql.fi <> | 2003-01-18 16:39:21 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-01-18 16:39:21 +0200 |
commit | 8acc22296c1dc26583d0fd0dc6e02de9d2f65902 (patch) | |
tree | 3f6f95778c36b31c0a79384484a6bcb6c19d369a /mysql-test | |
parent | 76f146a17551e218727ee4a5544edb62d3cbe56e (diff) | |
download | mariadb-git-8acc22296c1dc26583d0fd0dc6e02de9d2f65902.tar.gz |
Change client_flag to unsigned long (16 -> 32 bits) to handle more options.
Don't use new password format if mysql.user has old format
tables_priv was not reset on FLUSH PRIVILEGES if tables_priv was empty
Portability fixes for Windows
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/rpl_loaddata.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/rpl_loaddata.result b/mysql-test/r/rpl_loaddata.result index 27f3d185f63..8735cae47d5 100644 --- a/mysql-test/r/rpl_loaddata.result +++ b/mysql-test/r/rpl_loaddata.result @@ -1,9 +1,9 @@ -slave stop; +stop slave; drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9; reset master; reset slave; drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9; -slave start; +start slave; create table t1(a int not null auto_increment, b int, primary key(a) ); load data infile '../../std_data/rpl_loaddata.dat' into table t1; select * from t1; |