mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-04 12:56:14 +01:00 
			
		
		
		
	copy of
commit 86587affafe77ef555f7c3839839de44f0f203f3
Author: Tian Xia <tianx@fb.com>
Date:   Tue Oct 4 10:01:52 2016 -0700
    Allow filtering of show commands through admission control
		
	
			
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			326 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			326 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
--let $rpl_server_count= 2
 | 
						|
--let $rpl_topology= none
 | 
						|
--source include/rpl_init.inc
 | 
						|
--source include/rpl_default_connections.inc
 | 
						|
 | 
						|
connection server_1;
 | 
						|
create database db1;
 | 
						|
 | 
						|
create table db1.t1 (
 | 
						|
  `id` int(10) not null auto_increment,
 | 
						|
  `k` int(10),
 | 
						|
  `data` varchar(2048),
 | 
						|
  primary key (`id`),
 | 
						|
  key (`k`)
 | 
						|
) engine=rocksdb;
 | 
						|
 |