summaryrefslogtreecommitdiff
path: root/plugin/type_uuid/mysql-test/type_uuid/type_uuid-debug.result
blob: fc0eaae262790d7e6a9e937044de5282aa39d705 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# MDEV-4958 Adding datatype UUID
#
SET @old_debug_dbug=@@debug_dbug;
SET debug_dbug="+d,frm_data_type_info";
CREATE TABLE t1 (c01 UUID, c02 UUID);
Warnings:
Note	1105	build_frm_image: Field data type info length: 12
Note	1105	DBUG: [0] name='c01' type_info='uuid'
Note	1105	DBUG: [1] name='c02' type_info='uuid'
SET debug_dbug=@old_debug_dbug;
SHOW CREATE TABLE t1;
Table	Create Table
t1	CREATE TABLE `t1` (
  `c01` uuid DEFAULT NULL,
  `c02` uuid DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci
DROP TABLE t1;