mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	mysql-test/r/innodb.result: Auto merged BitKeeper/deleted/.del-select.result.es~240635f6a3f1a079: Auto merged BitKeeper/deleted/.del-type_float.result.es~a5533e4118eadc04: Auto merged BitKeeper/deleted/.del-type_ranges.result.es~bb77517f4c9dc978: Auto merged mysql-test/r/type_float.result: Auto merged mysql-test/r/variables.result: Auto merged mysql-test/t/alter_table.test: Auto merged mysql-test/t/connect.test: Auto merged mysql-test/t/grant2.test: Auto merged mysql-test/t/grant_cache.test: Auto merged mysql-test/t/innodb.test: Auto merged mysql-test/t/mix_innodb_myisam_binlog.test: Auto merged mysql-test/t/mysqlbinlog.test: Auto merged mysql-test/t/mysqlbinlog2.test: Auto merged mysql-test/t/mysqldump.test: Auto merged mysql-test/t/ps_1general.test: Auto merged mysql-test/t/select.test: Auto merged mysql-test/t/show_check.test: Auto merged mysql-test/t/system_mysql_db_fix.test: Auto merged mysql-test/t/type_blob.test: Auto merged mysql-test/t/type_float.test: Auto merged mysql-test/t/variables.test: Auto merged sql/sql_parse.cc: Auto merged sql/sql_select.cc: Auto merged mysql-test/mysql-test-run.sh: Merge mysql-test/r/alter_table.result: Update results mysql-test/r/ctype_ucs.result: Update results mysql-test/r/grant.result: Update results mysql-test/r/insert_select.result: Update results mysql-test/r/ps_1general.result: Update results mysql-test/r/select.result: Update results mysql-test/r/timezone2.result: Update results mysql-test/r/type_blob.result: Update results mysql-test/r/type_ranges.result: Update results mysql-test/r/user_var.result: Update results mysql-test/t/ctype_ucs.test: Merge mysql-test/t/grant.test: Merge mysql-test/t/insert_select.test: Merge mysql-test/t/timezone2.test: Merge mysql-test/t/type_ranges.test: Merge mysql-test/t/user_var.test: Merge
		
			
				
	
	
		
			94 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Embedded server doesn't support external clients
 | |
| --source include/not_embedded.inc
 | |
| 
 | |
| #
 | |
| # This is the test for mysql_fix_privilege_tables
 | |
| #
 | |
| # Note: If this test fails, don't be confused about the errors reported
 | |
| # by mysql-test-run; This shows warnings from generated by
 | |
| # mysql_fix_system_tables which should be ignored.
 | |
| # Instead, concentrate on the errors in r/system_mysql_db.reject
 | |
| 
 | |
| --disable_warnings
 | |
| drop table if exists t1,t1aa,t2aa;
 | |
| --enable_warnings
 | |
| 
 | |
| -- disable_result_log
 | |
| -- disable_query_log
 | |
| 
 | |
| use test;
 | |
| 
 | |
| # create system tables as in mysql-3.20
 | |
| 
 | |
| --disable_warnings
 | |
| CREATE TABLE db (
 | |
|   Host char(60) binary DEFAULT '' NOT NULL,
 | |
|   Db char(32) binary DEFAULT '' NOT NULL,
 | |
|   User char(16) binary DEFAULT '' NOT NULL,
 | |
|   Select_priv enum('N','Y') DEFAULT 'N' NOT NULL,
 | |
|   Insert_priv enum('N','Y') DEFAULT 'N' NOT NULL,
 | |
|   Update_priv enum('N','Y') DEFAULT 'N' NOT NULL,
 | |
|   Delete_priv enum('N','Y') DEFAULT 'N' NOT NULL,
 | |
|   Create_priv enum('N','Y') DEFAULT 'N' NOT NULL,
 | |
|   Drop_priv enum('N','Y') DEFAULT 'N' NOT NULL,
 | |
|   PRIMARY KEY Host (Host,Db,User),
 | |
|   KEY User (User)
 | |
| )
 | |
| type=ISAM;
 | |
| --enable-warnings
 | |
| 
 | |
| INSERT INTO db VALUES ('%','test',   '','Y','Y','Y','Y','Y','Y');
 | |
| INSERT INTO db VALUES ('%','test\_%','','Y','Y','Y','Y','Y','Y');
 | |
| 
 | |
| --disable_warnings
 | |
| CREATE TABLE host (
 | |
|   Host char(60) binary DEFAULT '' NOT NULL,
 | |
|   Db char(32) binary DEFAULT '' NOT NULL,
 | |
|   Select_priv enum('N','Y') DEFAULT 'N' NOT NULL,
 | |
|   Insert_priv enum('N','Y') DEFAULT 'N' NOT NULL,
 | |
|   Update_priv enum('N','Y') DEFAULT 'N' NOT NULL,
 | |
|   Delete_priv enum('N','Y') DEFAULT 'N' NOT NULL,
 | |
|   Create_priv enum('N','Y') DEFAULT 'N' NOT NULL,
 | |
|   Drop_priv enum('N','Y') DEFAULT 'N' NOT NULL,
 | |
|   PRIMARY KEY Host (Host,Db)
 | |
| )
 | |
| type=ISAM;
 | |
| --enable-warnings
 | |
| 
 | |
| --disable_warnings
 | |
| CREATE TABLE user (
 | |
|   Host char(60) binary DEFAULT '' NOT NULL,
 | |
|   User char(16) binary DEFAULT '' NOT NULL,
 | |
|   Password char(16),
 | |
|   Select_priv enum('N','Y') DEFAULT 'N' NOT NULL,
 | |
|   Insert_priv enum('N','Y') DEFAULT 'N' NOT NULL,
 | |
|   Update_priv enum('N','Y') DEFAULT 'N' NOT NULL,
 | |
|   Delete_priv enum('N','Y') DEFAULT 'N' NOT NULL,
 | |
|   Create_priv enum('N','Y') DEFAULT 'N' NOT NULL,
 | |
|   Drop_priv enum('N','Y') DEFAULT 'N' NOT NULL,
 | |
|   Reload_priv enum('N','Y') DEFAULT 'N' NOT NULL,
 | |
|   Shutdown_priv enum('N','Y') DEFAULT 'N' NOT NULL,
 | |
|   Process_priv enum('N','Y') DEFAULT 'N' NOT NULL,
 | |
|   PRIMARY KEY Host (Host,User)
 | |
| )
 | |
| type=ISAM;
 | |
| --enable-warnings
 | |
| 
 | |
| INSERT INTO user VALUES ('localhost','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y');
 | |
| INSERT INTO user VALUES ('localhost','',    '','N','N','N','N','N','N','N','N','N');
 | |
| 
 | |
| -- exec $MYSQL_FIX_SYSTEM_TABLES --database=test
 | |
| -- enable_query_log
 | |
| -- enable_result_log
 | |
| 
 | |
| -- source include/system_db_struct.inc
 | |
| 
 | |
| -- disable_query_log
 | |
| 
 | |
| DROP TABLE db, host, user, func, tables_priv, columns_priv, procs_priv, help_category, help_keyword, help_relation, help_topic, proc, time_zone, time_zone_leap_second, time_zone_name, time_zone_transition, time_zone_transition_type;
 | |
| 
 | |
| -- enable_query_log
 | |
| 
 | |
| # check that we droped all system tables
 | |
| show tables;
 |