mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
Remove percona's mysql-test/patches from MariaDB (we want to get a visible
conflict every time they make a change)
This commit is contained in:
parent
362009fe79
commit
75681669e4
4 changed files with 0 additions and 229 deletions
|
@ -1,33 +0,0 @@
|
|||
--- mysql-test/t/events_stress.test.orig 2009-07-05 10:29:14.000000000 +0000
|
||||
+++ mysql-test/t/events_stress.test 2009-07-05 10:30:49.000000000 +0000
|
||||
@@ -61,6 +61,7 @@
|
||||
}
|
||||
--enable_query_log
|
||||
SELECT COUNT(*) FROM INFORMATION_SCHEMA.EVENTS WHERE EVENT_SCHEMA='events_conn1_test2';
|
||||
+SET @old_event_scheduler=@@event_scheduler;
|
||||
SET GLOBAL event_scheduler=on;
|
||||
--sleep 2.5
|
||||
DROP DATABASE events_conn1_test2;
|
||||
@@ -137,5 +138,5 @@
|
||||
DROP DATABASE events_test;
|
||||
|
||||
# Cleanup
|
||||
-SET GLOBAL event_scheduler=off;
|
||||
+SET GLOBAL event_scheduler=@old_event_scheduler;
|
||||
--source include/check_events_off.inc
|
||||
--- mysql-test/r/events_stress.result.orig 2009-07-05 10:54:30.000000000 +0000
|
||||
+++ mysql-test/r/events_stress.result 2009-07-05 10:54:48.000000000 +0000
|
||||
@@ -32,6 +32,7 @@
|
||||
SELECT COUNT(*) FROM INFORMATION_SCHEMA.EVENTS WHERE EVENT_SCHEMA='events_conn1_test2';
|
||||
COUNT(*)
|
||||
50
|
||||
+SET @old_event_scheduler=@@event_scheduler;
|
||||
SET GLOBAL event_scheduler=on;
|
||||
DROP DATABASE events_conn1_test2;
|
||||
SET GLOBAL event_scheduler=off;
|
||||
@@ -63,4 +64,4 @@
|
||||
DROP TABLE fill_it2;
|
||||
DROP TABLE fill_it3;
|
||||
DROP DATABASE events_test;
|
||||
-SET GLOBAL event_scheduler=off;
|
||||
+SET GLOBAL event_scheduler=@old_event_scheduler;
|
|
@ -1,129 +0,0 @@
|
|||
--- mysql-test/r/information_schema.result.orig 2009-06-25 21:33:28.000000000 +0000
|
||||
+++ mysql-test/r/information_schema.result 2009-06-25 21:33:49.000000000 +0000
|
||||
@@ -71,6 +71,20 @@
|
||||
TRIGGERS
|
||||
USER_PRIVILEGES
|
||||
VIEWS
|
||||
+INNODB_BUFFER_POOL_PAGES_INDEX
|
||||
+INNODB_RSEG
|
||||
+INNODB_LOCKS
|
||||
+INNODB_BUFFER_POOL_PAGES
|
||||
+XTRADB_ENHANCEMENTS
|
||||
+INNODB_TRX
|
||||
+INNODB_INDEX_STATS
|
||||
+INNODB_LOCK_WAITS
|
||||
+INNODB_CMP_RESET
|
||||
+INNODB_CMP
|
||||
+INNODB_CMPMEM_RESET
|
||||
+INNODB_BUFFER_POOL_PAGES_BLOB
|
||||
+INNODB_CMPMEM
|
||||
+INNODB_TABLE_STATS
|
||||
columns_priv
|
||||
db
|
||||
event
|
||||
@@ -799,6 +813,8 @@
|
||||
TABLES UPDATE_TIME datetime
|
||||
TABLES CHECK_TIME datetime
|
||||
TRIGGERS CREATED datetime
|
||||
+INNODB_TRX trx_started datetime
|
||||
+INNODB_TRX trx_wait_started datetime
|
||||
event execute_at datetime
|
||||
event last_executed datetime
|
||||
event starts datetime
|
||||
@@ -847,12 +863,15 @@
|
||||
TABLE_CONSTRAINTS TABLE_NAME select
|
||||
TABLE_PRIVILEGES TABLE_NAME select
|
||||
VIEWS TABLE_NAME select
|
||||
+INNODB_BUFFER_POOL_PAGES_INDEX table_name select
|
||||
+INNODB_INDEX_STATS table_name select
|
||||
+INNODB_TABLE_STATS table_name select
|
||||
delete from mysql.user where user='mysqltest_4';
|
||||
delete from mysql.db where user='mysqltest_4';
|
||||
flush privileges;
|
||||
SELECT table_schema, count(*) FROM information_schema.TABLES WHERE table_schema IN ('mysql', 'INFORMATION_SCHEMA', 'test', 'mysqltest') AND table_name<>'ndb_binlog_index' AND table_name<>'ndb_apply_status' GROUP BY TABLE_SCHEMA;
|
||||
table_schema count(*)
|
||||
-information_schema 28
|
||||
+information_schema 42
|
||||
mysql 22
|
||||
create table t1 (i int, j int);
|
||||
create trigger trg1 before insert on t1 for each row
|
||||
@@ -1267,6 +1286,20 @@
|
||||
TRIGGERS TRIGGER_SCHEMA
|
||||
USER_PRIVILEGES GRANTEE
|
||||
VIEWS TABLE_SCHEMA
|
||||
+INNODB_BUFFER_POOL_PAGES_INDEX schema_name
|
||||
+INNODB_RSEG rseg_id
|
||||
+INNODB_LOCKS lock_id
|
||||
+INNODB_BUFFER_POOL_PAGES page_type
|
||||
+XTRADB_ENHANCEMENTS name
|
||||
+INNODB_TRX trx_id
|
||||
+INNODB_INDEX_STATS table_name
|
||||
+INNODB_LOCK_WAITS requesting_trx_id
|
||||
+INNODB_CMP_RESET page_size
|
||||
+INNODB_CMP page_size
|
||||
+INNODB_CMPMEM_RESET page_size
|
||||
+INNODB_BUFFER_POOL_PAGES_BLOB space_id
|
||||
+INNODB_CMPMEM page_size
|
||||
+INNODB_TABLE_STATS table_name
|
||||
SELECT t.table_name, c1.column_name
|
||||
FROM information_schema.tables t
|
||||
INNER JOIN
|
||||
@@ -1310,14 +1343,28 @@
|
||||
TRIGGERS TRIGGER_SCHEMA
|
||||
USER_PRIVILEGES GRANTEE
|
||||
VIEWS TABLE_SCHEMA
|
||||
+INNODB_BUFFER_POOL_PAGES_INDEX schema_name
|
||||
+INNODB_RSEG rseg_id
|
||||
+INNODB_LOCKS lock_id
|
||||
+INNODB_BUFFER_POOL_PAGES page_type
|
||||
+XTRADB_ENHANCEMENTS name
|
||||
+INNODB_TRX trx_id
|
||||
+INNODB_INDEX_STATS table_name
|
||||
+INNODB_LOCK_WAITS requesting_trx_id
|
||||
+INNODB_CMP_RESET page_size
|
||||
+INNODB_CMP page_size
|
||||
+INNODB_CMPMEM_RESET page_size
|
||||
+INNODB_BUFFER_POOL_PAGES_BLOB space_id
|
||||
+INNODB_CMPMEM page_size
|
||||
+INNODB_TABLE_STATS table_name
|
||||
SELECT MAX(table_name) FROM information_schema.tables WHERE table_schema IN ('mysql', 'INFORMATION_SCHEMA', 'test');
|
||||
MAX(table_name)
|
||||
-VIEWS
|
||||
+XTRADB_ENHANCEMENTS
|
||||
SELECT table_name from information_schema.tables
|
||||
WHERE table_name=(SELECT MAX(table_name)
|
||||
FROM information_schema.tables WHERE table_schema IN ('mysql', 'INFORMATION_SCHEMA', 'test'));
|
||||
table_name
|
||||
-VIEWS
|
||||
+XTRADB_ENHANCEMENTS
|
||||
DROP TABLE IF EXISTS bug23037;
|
||||
DROP FUNCTION IF EXISTS get_value;
|
||||
SELECT COLUMN_NAME, MD5(COLUMN_DEFAULT), LENGTH(COLUMN_DEFAULT) FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='bug23037';
|
||||
@@ -1386,6 +1433,19 @@
|
||||
FILES information_schema.FILES 1
|
||||
GLOBAL_STATUS information_schema.GLOBAL_STATUS 1
|
||||
GLOBAL_VARIABLES information_schema.GLOBAL_VARIABLES 1
|
||||
+INNODB_BUFFER_POOL_PAGES information_schema.INNODB_BUFFER_POOL_PAGES 1
|
||||
+INNODB_BUFFER_POOL_PAGES_BLOB information_schema.INNODB_BUFFER_POOL_PAGES_BLOB 1
|
||||
+INNODB_BUFFER_POOL_PAGES_INDEX information_schema.INNODB_BUFFER_POOL_PAGES_INDEX 1
|
||||
+INNODB_CMP information_schema.INNODB_CMP 1
|
||||
+INNODB_CMPMEM information_schema.INNODB_CMPMEM 1
|
||||
+INNODB_CMPMEM_RESET information_schema.INNODB_CMPMEM_RESET 1
|
||||
+INNODB_CMP_RESET information_schema.INNODB_CMP_RESET 1
|
||||
+INNODB_INDEX_STATS information_schema.INNODB_INDEX_STATS 1
|
||||
+INNODB_LOCKS information_schema.INNODB_LOCKS 1
|
||||
+INNODB_LOCK_WAITS information_schema.INNODB_LOCK_WAITS 1
|
||||
+INNODB_RSEG information_schema.INNODB_RSEG 1
|
||||
+INNODB_TABLE_STATS information_schema.INNODB_TABLE_STATS 1
|
||||
+INNODB_TRX information_schema.INNODB_TRX 1
|
||||
KEY_COLUMN_USAGE information_schema.KEY_COLUMN_USAGE 1
|
||||
PARTITIONS information_schema.PARTITIONS 1
|
||||
PLUGINS information_schema.PLUGINS 1
|
||||
@@ -1404,6 +1464,7 @@
|
||||
TRIGGERS information_schema.TRIGGERS 1
|
||||
USER_PRIVILEGES information_schema.USER_PRIVILEGES 1
|
||||
VIEWS information_schema.VIEWS 1
|
||||
+XTRADB_ENHANCEMENTS information_schema.XTRADB_ENHANCEMENTS 1
|
||||
create table t1(f1 int);
|
||||
create view v1 as select f1+1 as a from t1;
|
||||
create table t2 (f1 int, f2 int);
|
|
@ -1,23 +0,0 @@
|
|||
--- mysql-test/r/information_schema_db.result.orig 2009-06-25 21:41:38.000000000 +0000
|
||||
+++ mysql-test/r/information_schema_db.result 2009-06-25 21:42:01.000000000 +0000
|
||||
@@ -33,6 +33,20 @@
|
||||
TRIGGERS
|
||||
USER_PRIVILEGES
|
||||
VIEWS
|
||||
+INNODB_BUFFER_POOL_PAGES_INDEX
|
||||
+INNODB_RSEG
|
||||
+INNODB_LOCKS
|
||||
+INNODB_BUFFER_POOL_PAGES
|
||||
+XTRADB_ENHANCEMENTS
|
||||
+INNODB_TRX
|
||||
+INNODB_INDEX_STATS
|
||||
+INNODB_LOCK_WAITS
|
||||
+INNODB_CMP_RESET
|
||||
+INNODB_CMP
|
||||
+INNODB_CMPMEM_RESET
|
||||
+INNODB_BUFFER_POOL_PAGES_BLOB
|
||||
+INNODB_CMPMEM
|
||||
+INNODB_TABLE_STATS
|
||||
show tables from INFORMATION_SCHEMA like 'T%';
|
||||
Tables_in_information_schema (T%)
|
||||
TABLES
|
|
@ -1,44 +0,0 @@
|
|||
--- mysql-test/r/mysqlshow.result.orig 2009-06-25 21:56:22.000000000 +0000
|
||||
+++ mysql-test/r/mysqlshow.result 2009-06-25 21:56:28.000000000 +0000
|
||||
@@ -107,6 +107,20 @@
|
||||
| TRIGGERS |
|
||||
| USER_PRIVILEGES |
|
||||
| VIEWS |
|
||||
+| INNODB_BUFFER_POOL_PAGES_INDEX |
|
||||
+| INNODB_RSEG |
|
||||
+| INNODB_LOCKS |
|
||||
+| INNODB_BUFFER_POOL_PAGES |
|
||||
+| XTRADB_ENHANCEMENTS |
|
||||
+| INNODB_TRX |
|
||||
+| INNODB_INDEX_STATS |
|
||||
+| INNODB_LOCK_WAITS |
|
||||
+| INNODB_CMP_RESET |
|
||||
+| INNODB_CMP |
|
||||
+| INNODB_CMPMEM_RESET |
|
||||
+| INNODB_BUFFER_POOL_PAGES_BLOB |
|
||||
+| INNODB_CMPMEM |
|
||||
+| INNODB_TABLE_STATS |
|
||||
+---------------------------------------+
|
||||
Database: INFORMATION_SCHEMA
|
||||
+---------------------------------------+
|
||||
@@ -140,6 +154,20 @@
|
||||
| TRIGGERS |
|
||||
| USER_PRIVILEGES |
|
||||
| VIEWS |
|
||||
+| INNODB_BUFFER_POOL_PAGES_INDEX |
|
||||
+| INNODB_RSEG |
|
||||
+| INNODB_LOCKS |
|
||||
+| INNODB_BUFFER_POOL_PAGES |
|
||||
+| XTRADB_ENHANCEMENTS |
|
||||
+| INNODB_TRX |
|
||||
+| INNODB_INDEX_STATS |
|
||||
+| INNODB_LOCK_WAITS |
|
||||
+| INNODB_CMP_RESET |
|
||||
+| INNODB_CMP |
|
||||
+| INNODB_CMPMEM_RESET |
|
||||
+| INNODB_BUFFER_POOL_PAGES_BLOB |
|
||||
+| INNODB_CMPMEM |
|
||||
+| INNODB_TABLE_STATS |
|
||||
+---------------------------------------+
|
||||
Wildcard: inf_rmation_schema
|
||||
+--------------------+
|
Loading…
Reference in a new issue