diff options
author | unknown <sasha@mysql.sashanet.com> | 2000-11-21 16:41:29 -0700 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2000-11-21 16:41:29 -0700 |
commit | 62c3b53667b31f99c7cbcd64ec8434ff3960cbe8 (patch) | |
tree | 5afdb1e2522ab29fea99ec99b46391792913a044 /mysql-test/t | |
parent | 7dd56817a5069eb0210c8e590729973cd98a4acb (diff) | |
download | mariadb-git-62c3b53667b31f99c7cbcd64ec8434ff3960cbe8.tar.gz |
client/mysqltest.c
generate a bigger reject file ( full in most cases) if the master result file is 0 length
sql/sql_show.cc
fixed 3 bugs in SHOW CREATE TABLE
New test case shw000001 for SHOW CREATE TABLE bugs
BitKeeper/etc/ignore:
Added BitKeeper/tmp/bkOF1wtJ scripts/mysqldumpslow to the ignore list
client/mysqltest.c:
generate a bigger reject file ( full in most cases) if the master result file is 0 length
sql/sql_show.cc:
fixed 3 bugs in SHOW CREATE TABLE
Diffstat (limited to 'mysql-test/t')
-rw-r--r-- | mysql-test/t/3.23/shw000001.test | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/t/3.23/shw000001.test b/mysql-test/t/3.23/shw000001.test new file mode 100644 index 00000000000..0abb940d207 --- /dev/null +++ b/mysql-test/t/3.23/shw000001.test @@ -0,0 +1,7 @@ +use test; +drop table if exists test; +create table test ( + test_set set( 'val1', 'val2', 'val3' ) not null default '', + name char(20) default 'O''Brien' + ) comment = 'it\'s a table' ; +@r/3.23/shw000001.result show create table test ; |