mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-11-04 07:49:35 +00:00 
			
		
		
		
	Search and replace for references to moved examples Reverted find and replace paths on auto gen docs Reverting changes to changelog Fix bugs in test-cmd.sh Fixed path in examples README ran update-all successfully Updated verify-flags exceptions to include renamed files
		
			
				
	
	
		
			9 lines
		
	
	
		
			207 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			207 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
CREATE TABLE messages (
 | 
						|
  page BIGINT(20) UNSIGNED,
 | 
						|
  time_created_ns BIGINT(20) UNSIGNED,
 | 
						|
  keyspace_id BIGINT(20) UNSIGNED,
 | 
						|
  message VARCHAR(10000),
 | 
						|
  PRIMARY KEY (page, time_created_ns)
 | 
						|
) ENGINE=InnoDB
 | 
						|
 |