mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-27 05:56:07 +03:00 
			
		
		
		
	 1f6ecc0cd3
			
		
	
	1f6ecc0cd3
	
	
	
		
			
			Cleaned up test; Removed wrong DROP TABLE commands and use standard table and database names. changed store_warning() -> push_warning_print()
		
			
				
	
	
		
			21 lines
		
	
	
		
			528 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			528 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| drop table if exists t1;
 | |
| CREATE TABLE t1 (
 | |
| kodoboru varchar(10) default NULL,
 | |
| obor tinytext,
 | |
| aobor tinytext,
 | |
| UNIQUE INDEX kodoboru (kodoboru),
 | |
| FULLTEXT KEY obor (obor),
 | |
| FULLTEXT KEY aobor (aobor)
 | |
| );
 | |
| INSERT INTO t1 VALUES ('0101000000','aaa','AAA');
 | |
| INSERT INTO t1 VALUES ('0102000000','bbb','BBB');
 | |
| INSERT INTO t1 VALUES ('0103000000','ccc','CCC');
 | |
| INSERT INTO t1 VALUES ('0104000000','xxx','XXX');
 | |
| select * from t1;
 | |
| kodoboru	obor	aobor
 | |
| 0101000000	aaa	AAA
 | |
| 0102000000	bbb	BBB
 | |
| 0103000000	ccc	CCC
 | |
| 0104000000	xxx	XXX
 | |
| drop table t1;
 |