caiconghui opened a new issue #3954:
URL: https://github.com/apache/incubator-doris/issues/3954


   **Describe the bug**
   default_rowset_type have a session variable
   
   **To Reproduce**
   mysql> show variables like 'default_rowset_type';
   +---------------------+-------+
   | Variable_name       | Value |
   +---------------------+-------+
   | default_rowset_type | alpha |
   +---------------------+-------+
   1 row in set (0.01 sec)
   
   mysql> set global default_rowset_type="beta";
   Query OK, 0 rows affected (0.01 sec)
   
   mysql> show variables like 'default_rowset_type';
   +---------------------+-------+
   | Variable_name       | Value |
   +---------------------+-------+
   | default_rowset_type | alpha  |
   +---------------------+-------+
   1 row in set (0.00 sec)
   
   mysql> 
   
   
   **Expected behavior**
   mysql> show variables like 'default_rowset_type';
   +---------------------+-------+
   | Variable_name       | Value |
   +---------------------+-------+
   | default_rowset_type | beta  |
   +---------------------+-------+
   1 row in set (0.00 sec)


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to