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