File: identifier_limits63_debug.test

package info (click to toggle)
mysql-8.0 8.0.43-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,273,924 kB
  • sloc: cpp: 4,684,605; ansic: 412,450; pascal: 108,398; java: 83,641; perl: 30,221; cs: 27,067; sql: 26,594; sh: 24,181; python: 21,816; yacc: 17,169; php: 11,522; xml: 7,388; javascript: 7,076; makefile: 2,194; lex: 1,075; awk: 670; asm: 520; objc: 183; ruby: 97; lisp: 86
file content (50 lines) | stat: -rw-r--r-- 1,701 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
--source include/have_ndb.inc
--source include/have_debug.inc

# ############################################################
# WL#10162 Schema dist operation error code return
# - fixes problem with too short columns for db and table
#   name in the ndb_schema table. When using long identifiers
#   with multibyte characters there wasn't enough room
#   for them to be distributed.
# - when upgrading the cluster without modifying the ndb_schema
#   table this limit will still be in effect, this test
#   ensures that limit is properly enforced in such case
# ############################################################
set @save_debug = @@global.debug;

--echo # Testing schema identifier with length 64
--echo # NOTE! ndb_schema identifier length limit used to be 63 bytes,
--echo # use dbug keyword to emulate old limit
--echo #
set global debug='+d,ndb_schema_dist_63byte_limit';

let $name64 = abcdefghijklmnopqrstuvwxyz1234567890bcdefghijklmnopqrstuvwxyz123;
--disable_query_log ONCE
eval SELECT LENGTH('$name64') as should_be_64_bytes,
            CHAR_LENGTH('$name64') as should_be_64_characters;

# Suppress error log messages triggered by failure to distribute in
# the below tests
-- disable_query_log ONCE
call mtr.add_suppression("Failed to distribute");

--echo # Create database suceeds but generates a warning as well as
--echo # prints a message to log.
eval CREATE DATABASE $name64;
--echo # Verify database existence
eval USE $name64;
--echo # Create non NDB table
CREATE TABLE t1 (
  a int
);
--echo # Create NDB table should fail
--error ER_TOO_LONG_IDENT
CREATE TABLE t2 (
  a int
) ENGINE=NDB;
show warnings;

eval DROP DATABASE $name64;

set @@global.debug = @save_debug;