mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	Merged the majority of the PFS test cases. There are still 19 failing test cases that need more attention.
		
			
				
	
	
		
			25 lines
		
	
	
		
			621 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			621 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
# Making sure not to run when ps-protocol is set.
 | 
						|
--source ../include/no_protocol.inc
 | 
						|
 | 
						|
--echo ####################################
 | 
						|
--echo # SETUP
 | 
						|
--echo ####################################
 | 
						|
# Database setup
 | 
						|
--disable_warnings
 | 
						|
CREATE DATABASE statements_digest;
 | 
						|
--enable_warnings
 | 
						|
USE statements_digest;
 | 
						|
 | 
						|
# Table set up for queries
 | 
						|
--disable_warnings
 | 
						|
CREATE TABLE t1(a int);
 | 
						|
CREATE TABLE t2(a int);
 | 
						|
CREATE TABLE t3(a int, b int);
 | 
						|
CREATE TABLE t4(a int, b int);
 | 
						|
CREATE TABLE t5(a int, b int, c int);
 | 
						|
CREATE TABLE t6(a int, b int, c int, d int);
 | 
						|
CREATE TABLE t11 (c CHAR(4));
 | 
						|
CREATE TABLE t12 (c CHAR(4));
 | 
						|
--enable_warnings
 | 
						|
 |