mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 10:31:54 +01:00
22 lines
543 B
Text
22 lines
543 B
Text
-- source include/not_embedded.inc
|
|
-- source ../include/ps_truncate_all_tables.inc
|
|
# Tests for sys schema
|
|
# Verify the sys.user_summary view
|
|
|
|
# Ensure structure changes don't slip in
|
|
DESC sys.user_summary;
|
|
|
|
# Make sure view select does not error, but ignore results
|
|
--disable_result_log
|
|
SELECT * FROM sys.user_summary;
|
|
--enable_result_log
|
|
|
|
|
|
# Ensure structure changes don't slip in
|
|
DESC sys.x$user_summary;
|
|
|
|
# Make sure view select does not error, but ignore results
|
|
--disable_result_log
|
|
SELECT * FROM sys.x$user_summary;
|
|
--enable_result_log
|
|
|