-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Closed
Labels
Description
Steps to reproduce the behavior (Required)
mysql> select current_user(),database(),connection_id();
+----------------+------------+-----------------+
| CURRENT_USER() | DATABASE() | CONNECTION_ID() |
+----------------+------------+-----------------+
| tpch_1g | tpch_1g | 16777217 |
+----------------+------------+-----------------+
1 row in set (0.01 sec)Expected behavior (Required)
mysql> select current_user(),database(),connection_id();
+----------------+------------+-----------------+
| CURRENT_USER() | DATABASE() | CONNECTION_ID() |
+----------------+------------+-----------------+
| 'root'@'%' | tpch_1g | 16777217 |
+----------------+------------+-----------------+
1 row in set (0.00 sec)Real behavior (Required)
StarRocks version (Required)
- You can get the StarRocks version by executing SQL
select current_version()