diff options
author | unknown <konstantin@mysql.com> | 2005-11-25 18:53:55 +0300 |
---|---|---|
committer | unknown <konstantin@mysql.com> | 2005-11-25 18:53:55 +0300 |
commit | 2e79201c727a593d93eae269e48e0240161525fd (patch) | |
tree | 2e9345044c8ec4193a9e0b1a7178ec253d4ed76f /mysql-test/r/ndb_basic.result | |
parent | 61e454c0a9758a2c12fc8b949706d6f356a02041 (diff) | |
download | mariadb-git-2e79201c727a593d93eae269e48e0240161525fd.tar.gz |
Post-merge fixes.
Diffstat (limited to 'mysql-test/r/ndb_basic.result')
-rw-r--r-- | mysql-test/r/ndb_basic.result | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/ndb_basic.result b/mysql-test/r/ndb_basic.result index e288592c390..55cbbd89b3c 100644 --- a/mysql-test/r/ndb_basic.result +++ b/mysql-test/r/ndb_basic.result @@ -667,13 +667,13 @@ counter datavalue 57 newval 58 newval drop table t1; +CREATE TABLE t1 ( b INT ) PACK_KEYS = 0 ENGINE = ndb; +select * from t1; +b +drop table t1; create table atablewithareallylongandirritatingname (a int); insert into atablewithareallylongandirritatingname values (2); select * from atablewithareallylongandirritatingname; a 2 drop table atablewithareallylongandirritatingname; -CREATE TABLE t1 ( b INT ) PACK_KEYS = 0 ENGINE = ndb; -select * from t1; -b -drop table t1; |