You've already forked mariadb-columnstore-engine
							
							
				mirror of
				https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
				synced 2025-11-03 17:13:17 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			546 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			546 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
--source ../include/have_columnstore.inc
 | 
						|
--source ../include/detect_maxscale.inc
 | 
						|
 | 
						|
--disable_warnings
 | 
						|
DROP DATABASE IF EXISTS MCOL5744;
 | 
						|
--enable_warnings
 | 
						|
--source ../include/charset.inc
 | 
						|
 | 
						|
CREATE DATABASE MCOL5744;
 | 
						|
USE MCOL5744;
 | 
						|
 | 
						|
SET old_mode='';
 | 
						|
 | 
						|
CREATE TABLE t(x text CHARACTER SET utf8 COLLATE utf8_general_ci) ENGINE=COLUMNSTORE;
 | 
						|
SHOW CREATE TABLE t;
 | 
						|
DROP TABLE t;
 | 
						|
 | 
						|
SET old_mode='UTF8_IS_UTF8MB3';
 | 
						|
 | 
						|
CREATE TABLE t(x text CHARACTER SET utf8 COLLATE utf8_general_ci) ENGINE=COLUMNSTORE;
 | 
						|
SHOW CREATE TABLE t;
 | 
						|
DROP TABLE t;
 | 
						|
 | 
						|
DROP DATABASE MCOL5744;
 |