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
		
	
	
		
			599 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			599 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# -------------------------------------------------------------- #
 | 
						|
# Test case migrated from regression test suite: MCOL-671.sql
 | 
						|
#
 | 
						|
# Author: Daniel Lee, daniel.lee@mariadb.com
 | 
						|
# -------------------------------------------------------------- #
 | 
						|
#
 | 
						|
--source ../include/have_columnstore.inc
 | 
						|
#
 | 
						|
USE tpch1;
 | 
						|
#
 | 
						|
 | 
						|
--disable_warnings
 | 
						|
drop table if exists MCOL_671;
 | 
						|
--enable_warnings
 | 
						|
 | 
						|
CREATE TABLE MCOL_671 (a int, b text) engine=columnstore;
 | 
						|
INSERT INTO MCOL_671 VALUES (1, REPEAT('MariaDB ', 7500));
 | 
						|
 | 
						|
SELECT a, length(b) FROM MCOL_671 WHERE b > 'K';
 | 
						|
 | 
						|
--disable_warnings
 | 
						|
DROP TABLE MCOL_671;
 | 
						|
--enable_warnings
 | 
						|
#
 |