You've already forked mariadb-columnstore-engine
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:
@ -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;
|
Reference in New Issue
Block a user