mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	(and collateral changes) mysql-test/t/innodb_mysql_lock.test: change the variable from the test, not from the .opt file. one mysqld restart less. mysql-test/t/lowercase_table4.test: fix dos line endings sql/handler.cc: don't access the uninitialized variable
		
			
				
	
	
		
			26 lines
		
	
	
		
			731 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			731 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
CREATE TABLE Country (
 | 
						|
  Code char(3) NOT NULL default '',
 | 
						|
  Name char(52) NOT NULL default '',
 | 
						|
  SurfaceArea float(10,2) NOT NULL default '0.00',
 | 
						|
  Population int(11) NOT NULL default '0',
 | 
						|
  Capital int(11) default NULL,
 | 
						|
  PRIMARY KEY  (Code),
 | 
						|
  UNIQUE INDEX (Name)
 | 
						|
);
 | 
						|
CREATE TABLE City (
 | 
						|
  ID int(11) NOT NULL auto_increment,
 | 
						|
  Name char(35) NOT NULL default '',
 | 
						|
  Country char(3) NOT NULL default '',
 | 
						|
  Population int(11) NOT NULL default '0',
 | 
						|
  PRIMARY KEY  (ID),
 | 
						|
  INDEX (Population),
 | 
						|
  INDEX (Country) 
 | 
						|
);
 | 
						|
CREATE TABLE CountryLanguage (
 | 
						|
  Country char(3) NOT NULL default '',
 | 
						|
  Language char(30) NOT NULL default '',
 | 
						|
  Percentage float(3,1) NOT NULL default '0.0',
 | 
						|
  PRIMARY KEY  (Country, Language),
 | 
						|
  INDEX (Percentage)
 | 
						|
);
 |