mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			353 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			353 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#
 | 
						|
# Simple test for the example storage engine
 | 
						|
# Taken fromm the select test
 | 
						|
#
 | 
						|
-- source include/have_exampledb.inc
 | 
						|
 | 
						|
--disable_warnings
 | 
						|
drop table if exists t1;
 | 
						|
--enable_warnings
 | 
						|
 | 
						|
CREATE TABLE t1 (
 | 
						|
  Period smallint(4) unsigned zerofill DEFAULT '0000' NOT NULL,
 | 
						|
  Varor_period smallint(4) unsigned DEFAULT '0' NOT NULL
 | 
						|
) ENGINE=example;
 | 
						|
 | 
						|
drop table t1;
 |