Skip to content
Permalink
Browse files
reformat the test
  • Loading branch information
Weijun-H authored and FooBarrior committed Nov 26, 2022
1 parent 0204cf1 commit 8535189
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
@@ -103,8 +103,11 @@ drop table t;
# MDEV-29387: Period name with more than 32 symbols crashes the server
#
# test 34 symbols
create table t2 (s date, e date, period for `abcd123456789012345678901234567890` (s,e));
create table t2 (s date, e date,
period for `abcd123456789012345678901234567890` (s,e));
drop table t2;
# test 64 symbols
create table t2 (s date, e date, period for `abcd123456789012345678901234567890123456789012345678901234567890` (s,e));
create table t2 (s date, e date, period for
`abcd123456789012345678901234567890123456789012345678901234567890`
(s,e));
drop table t2;
@@ -90,9 +90,12 @@ drop table t;
--echo #

--echo # test 34 symbols
create table t2 (s date, e date, period for `abcd123456789012345678901234567890` (s,e));
create table t2 (s date, e date,
period for `abcd123456789012345678901234567890` (s,e));
drop table t2;

--echo # test 64 symbols
create table t2 (s date, e date, period for `abcd123456789012345678901234567890123456789012345678901234567890` (s,e));
drop table t2;
create table t2 (s date, e date, period for
`abcd123456789012345678901234567890123456789012345678901234567890`
(s,e));
drop table t2;
@@ -29,7 +29,7 @@
/* extra 4+4 bytes for slave tmp tables */
#define MAX_DBKEY_LENGTH (NAME_LEN*2+1+1+4+4)
#define MAX_ALIAS_NAME 256
#define MAX_FIELD_NAME (NAME_LEN+1) /* Max colum name length +1 */
#define MAX_FIELD_NAME (NAME_LEN+1) /* Max colum name length +1 */
#define MAX_SYS_VAR_LENGTH 32
#define MAX_KEY MAX_INDEXES /* Max used keys */
#define MAX_REF_PARTS 32 /* Max parts used as ref */

0 comments on commit 8535189

Please sign in to comment.