1
2008-02-29 Matthias Leich
2
=========================
4
1. The testsuite "funcs_1" is mostly intended for additional (compared
5
to the common regression tests stored in mysql-test/t) checks
6
of features (VIEWS, INFORMATION_SCHEMA, STORED PROCEDURES,...)
7
introduced with MySQL 5.0.
9
2. There were some extensions of this suite when new information_schema
10
views were introduced. But in most cases the tests for these views
11
were stored within the regression testsuite (mysql-test/t).
13
INFORMATION_SCHEMA views introduced with MySQL 5.1
14
==================================================
15
ENGINES (partially tested here)
16
EVENTS (partially tested here)
22
PROCESSLIST (full tested here)
24
REFERENTIAL_CONSTRAINTS
29
- SHOW TABLES ... LIKE '<pattern>'
30
does a case sensitive comparison between the tablename and
32
The names of the tables within the informationschema are in uppercase.
33
So please use something like
34
SHOW TABLES FOR information_schema LIKE 'TABLES'
35
when you intend to get the same non empty result set on OS with and
36
without case sensitive filesystems and default configuration.
37
- The name of the data dictionary is 'information_schema' (lowercase).
38
- Server on OS with filesystem with case sensitive filenames
39
(= The files 'abc' and 'Abc' can coexist.)
40
+ default configuration
42
DROP DATABASE information_schema;
43
ERROR 42000: Access denied for user ... to database 'information_schema'
44
DROP DATABASE INFORMATION_SCHEMA;
45
ERROR 42000: Access denied for user ... to database 'INFORMATION_SCHEMA'