1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

Fix mcs170_session_functions_maxscale test

This commit is contained in:
Timofey Turenko
2024-08-20 12:51:54 +03:00
parent d5c8b98162
commit 3ed2a7e298

View File

@ -0,0 +1,23 @@
SET default_storage_engine=Columnstore;
DROP DATABASE IF EXISTS mcs170_db;
CREATE DATABASE mcs170_db;
USE mcs170_db;
SELECT CONNECTION_ID() > 0;
CONNECTION_ID() > 0
1
SELECT CURRENT_USER();
CURRENT_USER()
testUser@%
SELECT USER();
USER()
testUser@max
SELECT SESSION_USER();
SESSION_USER()
testUser@max
SELECT SYSTEM_USER();
SYSTEM_USER()
testUser@max
SELECT DATABASE();
DATABASE()
mcs170_db
DROP DATABASE mcs170_db;