mirror of
https://github.com/MariaDB/server.git
synced 2025-03-15 11:38:42 +01:00
23 lines
598 B
Text
23 lines
598 B
Text
![]() |
-- source include/not_embedded.inc
|
||
|
-- source ../include/ps_truncate_all_tables.inc
|
||
|
# Tests for sys schema
|
||
|
# Verify the sys.schema_table_statistics view
|
||
|
|
||
|
# Ensure structure changes don't slip in
|
||
|
DESC sys.schema_table_statistics;
|
||
|
|
||
|
# Make sure view select does not error, but ignore results
|
||
|
--disable_result_log
|
||
|
SELECT * FROM sys.schema_table_statistics;
|
||
|
--enable_result_log
|
||
|
|
||
|
|
||
|
# Ensure structure changes don't slip in
|
||
|
DESC sys.x$schema_table_statistics;
|
||
|
|
||
|
# Make sure view select does not error, but ignore results
|
||
|
--disable_result_log
|
||
|
SELECT * FROM sys.x$schema_table_statistics;
|
||
|
--enable_result_log
|
||
|
|