测试环境,ob-ce-3.1.4
$ /home/admin/obproxy/bin/obproxy -V
obproxy (OceanBase 3.2.3.5 2)
连接,查询参数配置
$ mysql -h127.0.0.1 -P3308 -uroot@proxysys -A
...
mysql> SHOW PARAMETERS ;
+--------------------------+-------------------+
| Variable_name | Value |
+--------------------------+-------------------+
| tx_isolation | READ-COMMITTED |
| system_time_zone | +08:00 |
| time_zone | +08:00 |
| character_set_server | utf8mb4 |
| character_set_client | utf8mb4 |
| interactive_timeout | 28800 |
| query_cache_size | 1048576 |
| character_set_results | utf8mb4 |
| max_allowed_packet | 4194304 |
| sql_mode | STRICT_ALL_TABLES |
| net_buffer_length | 16384 |
| wait_timeout | 28800 |
| lower_case_table_names | 2 |
| query_cache_type | OFF |
| init_connect | |
| transaction_isolation | READ |
| character_set_connection | utf8mb4 |
| net_write_timeout | 60 |
+--------------------------+-------------------+
请问上述输出结果中,tx_isolation 和 transaction_isolation 区别是什么。
另外,一个显示 READ-COMMITTED,一个显示 READ,是否算bug?
谢谢。