mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 02:46:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			153 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			153 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| include/master-slave.inc
 | |
| [connection master]
 | |
| CREATE TABLE t1 (word CHAR(20) NOT NULL);
 | |
| LOAD DATA INFILE '../../std_data/words.dat' INTO TABLE t1;
 | |
| SELECT * FROM t1 ORDER BY word;
 | |
| word
 | |
| Aarhus
 | |
| Aarhus
 | |
| Aaron
 | |
| Aaron
 | |
| Ababa
 | |
| Ababa
 | |
| aback
 | |
| aback
 | |
| abaft
 | |
| abaft
 | |
| abandon
 | |
| abandon
 | |
| abandoned
 | |
| abandoned
 | |
| abandoning
 | |
| abandoning
 | |
| abandonment
 | |
| abandonment
 | |
| abandons
 | |
| abandons
 | |
| abase
 | |
| abased
 | |
| abasement
 | |
| abasements
 | |
| abases
 | |
| abash
 | |
| abashed
 | |
| abashes
 | |
| abashing
 | |
| abasing
 | |
| abate
 | |
| abated
 | |
| abatement
 | |
| abatements
 | |
| abater
 | |
| abates
 | |
| abating
 | |
| Abba
 | |
| abbe
 | |
| abbey
 | |
| abbeys
 | |
| abbot
 | |
| abbots
 | |
| Abbott
 | |
| abbreviate
 | |
| abbreviated
 | |
| abbreviates
 | |
| abbreviating
 | |
| abbreviation
 | |
| abbreviations
 | |
| Abby
 | |
| abdomen
 | |
| abdomens
 | |
| abdominal
 | |
| abduct
 | |
| abducted
 | |
| abduction
 | |
| abductions
 | |
| abductor
 | |
| abductors
 | |
| abducts
 | |
| Abe
 | |
| abed
 | |
| Abel
 | |
| Abelian
 | |
| Abelson
 | |
| Aberdeen
 | |
| Abernathy
 | |
| aberrant
 | |
| aberration
 | |
| connection slave;
 | |
| SELECT * FROM t1 ORDER BY word;
 | |
| word
 | |
| Aarhus
 | |
| Aarhus
 | |
| Aaron
 | |
| Aaron
 | |
| Ababa
 | |
| Ababa
 | |
| aback
 | |
| aback
 | |
| abaft
 | |
| abaft
 | |
| abandon
 | |
| abandon
 | |
| abandoned
 | |
| abandoned
 | |
| abandoning
 | |
| abandoning
 | |
| abandonment
 | |
| abandonment
 | |
| abandons
 | |
| abandons
 | |
| abase
 | |
| abased
 | |
| abasement
 | |
| abasements
 | |
| abases
 | |
| abash
 | |
| abashed
 | |
| abashes
 | |
| abashing
 | |
| abasing
 | |
| abate
 | |
| abated
 | |
| abatement
 | |
| abatements
 | |
| abater
 | |
| abates
 | |
| abating
 | |
| Abba
 | |
| abbe
 | |
| abbey
 | |
| abbeys
 | |
| abbot
 | |
| abbots
 | |
| Abbott
 | |
| abbreviate
 | |
| abbreviated
 | |
| abbreviates
 | |
| abbreviating
 | |
| abbreviation
 | |
| abbreviations
 | |
| Abby
 | |
| abdomen
 | |
| abdomens
 | |
| abdominal
 | |
| abduct
 | |
| abducted
 | |
| abduction
 | |
| abductions
 | |
| abductor
 | |
| abductors
 | |
| abducts
 | |
| Abe
 | |
| abed
 | |
| Abel
 | |
| Abelian
 | |
| Abelson
 | |
| Aberdeen
 | |
| Abernathy
 | |
| aberrant
 | |
| aberration
 | |
| connection master;
 | |
| drop table t1;
 | |
| connection slave;
 | |
| include/rpl_end.inc
 | 
