目前有一套tidb,由最开始v3.0—>v4.0—>v5.1—>v6.5升级而来
所以new_collation_enabled的值一直为False,new_collations_enabled_on_first_bootstrap的值从v6.5后变为True,但是show collation看到的却只有utf8mb4_bin,怎么才能支持多种Collation?
update mysql.tidb set new_collation_enabled=‘True’ where VARIABLE_NAME=‘new_collation_enabled’;这样可以吗?