diff options
author | monty@mysql.com <> | 2004-05-04 15:02:38 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2004-05-04 15:02:38 +0300 |
commit | 59ddd8c7383ae69009c8570d427a4e15ccf2a357 (patch) | |
tree | 05ce49a5f256144b2831c0deca15ee425d42d9b6 /mysql-test/r/bdb.result | |
parent | 661aeb5af2e07c483a2dbf5b20604e57bd3b5f1f (diff) | |
download | mariadb-git-59ddd8c7383ae69009c8570d427a4e15ccf2a357.tar.gz |
Fix to handle unsigned data in prepared statements (Bug #3447)
Fixed security problem that password was temporarly reset when someone changed GRANT for a user. (Bug #3404)
Fixed problem with PROCEDURE analyse() and impossible WHERE (Bug #2238)
Don't auto-repair tables in mysqlcheck if table type doesn't support 'check' command.
Diffstat (limited to 'mysql-test/r/bdb.result')
-rw-r--r-- | mysql-test/r/bdb.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/bdb.result b/mysql-test/r/bdb.result index bee40eac30d..a544bbbf0b7 100644 --- a/mysql-test/r/bdb.result +++ b/mysql-test/r/bdb.result @@ -203,7 +203,7 @@ a 2 check table t1; Table Op Msg_type Msg_text -test.t1 check error The storage engine for the table doesn't support check +test.t1 check note The storage engine for the table doesn't support check drop table t1; create table t1 (a int,b varchar(20)) engine=bdb; insert into t1 values (1,""), (2,"testing"); |