mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 20:36:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			601 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			601 B
		
	
	
	
		
			Text
		
	
	
	
	
	
DROP TABLE IF EXISTS t7;
 | 
						|
CREATE TABLE t7(c1 SET('a','b','c') NULL);
 | 
						|
SHOW TABLES;
 | 
						|
Tables_in_test
 | 
						|
t7
 | 
						|
SHOW CREATE TABLE t7;
 | 
						|
Table	Create Table
 | 
						|
t7	CREATE TABLE `t7` (
 | 
						|
  `c1` set('a','b','c') DEFAULT NULL
 | 
						|
) ENGINE=ENGINE DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
 | 
						|
DROP TABLE t7;
 | 
						|
SHOW TABLES;
 | 
						|
Tables_in_test
 | 
						|
CREATE TABLE t7(c1 SET('a','b','c') NOT NULL);
 | 
						|
SHOW TABLES;
 | 
						|
Tables_in_test
 | 
						|
t7
 | 
						|
SHOW CREATE TABLE t7;
 | 
						|
Table	Create Table
 | 
						|
t7	CREATE TABLE `t7` (
 | 
						|
  `c1` set('a','b','c') NOT NULL
 | 
						|
) ENGINE=ENGINE DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
 | 
						|
DROP TABLE t7;
 | 
						|
SHOW TABLES;
 | 
						|
Tables_in_test
 |