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 
			
		
		
		
	Also fixing the problem with missing UDFs for the affected tests. (see MCOL-4659 for details): When mtr runs without --remote, the UDFs must be installed inside the test using CREATE FUNCTION. Note, there are still more tests left with missing UDFs. They'll be fixed separately.
		
			
				
	
	
		
			16 lines
		
	
	
		
			454 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			454 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
DROP DATABASE IF EXISTS mcs212_db;
 | 
						|
CREATE DATABASE mcs212_db;
 | 
						|
USE mcs212_db;
 | 
						|
CREATE TABLE t1(col1 INT, col2 INT, col3 CHAR(8)) ENGINE=Columnstore;
 | 
						|
LOAD DATA LOCAL infile 'MTR_SUITE_DIR/../std_data/100Krows.dat' INTO TABLE t1 FIELDS TERMINATED BY '|';;
 | 
						|
SELECT COUNT(*) FROM t1;
 | 
						|
COUNT(*)
 | 
						|
100001
 | 
						|
SELECT idbExtentMax(col1) FROM t1 LIMIT 1;
 | 
						|
idbExtentMax(col1)
 | 
						|
32767
 | 
						|
SELECT idbExtentMax(col2) FROM t1 LIMIT 1;
 | 
						|
idbExtentMax(col2)
 | 
						|
32767
 | 
						|
DROP DATABASE mcs212_db;
 |