diff options
author | unknown <msvensson@neptunus.(none)> | 2005-05-19 20:38:48 +0200 |
---|---|---|
committer | unknown <msvensson@neptunus.(none)> | 2005-05-19 20:38:48 +0200 |
commit | 384456fc10c124d767e2d94bba4f59d8afc9ee4f (patch) | |
tree | 6ceb697d9663c57ba7137b9a23006ada29920e9e /mysql-test/r/ndb_basic.result | |
parent | 3bd46ad8d2b05a11f9f24a5108b2077a7bb406a6 (diff) | |
download | mariadb-git-384456fc10c124d767e2d94bba4f59d8afc9ee4f.tar.gz |
BUG#9626 valgrind warnings
- after review fixes
mysql-test/r/ndb_basic.result:
Test using table with long name
mysql-test/t/ndb_basic.test:
Test using table with long name
ndb/include/transporter/TransporterDefinitions.hpp:
Define constant for max section size
ndb/src/ndbapi/NdbDictionaryImpl.cpp:
Add check for not sending too long table name to ndb kernel
Diffstat (limited to 'mysql-test/r/ndb_basic.result')
-rw-r--r-- | mysql-test/r/ndb_basic.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/ndb_basic.result b/mysql-test/r/ndb_basic.result index 6383a636cad..a374f845933 100644 --- a/mysql-test/r/ndb_basic.result +++ b/mysql-test/r/ndb_basic.result @@ -667,3 +667,9 @@ counter datavalue 57 newval 58 newval drop table t1; +create table atablewithareallylongandirritatingname (a int); +insert into atablewithareallylongandirritatingname values (2); +select * from atablewithareallylongandirritatingname; +a +2 +drop table atablewithareallylongandirritatingname; |