lealone / Lealone

比 MySQL 和 MongoDB 快10倍的 OLTP 关系数据库和文档数据库
Other
2.44k stars 513 forks source link

DATABASE_TO_UPPER #183

Closed cbqqkcel closed 1 year ago

cbqqkcel commented 1 year ago

DATABASE_TO_UPPER 可以在 yaml 里面全局配置吗

codefollower commented 1 year ago

不可以,这个参数是针对具体数据库的,创建数据库时指定即可。 create database mydb parameters(database_to_upper=false);

codefollower commented 1 year ago

每个 database 可配置的参数,通过 select * from information_schema.settings where scope='database' 查看。

cbqqkcel commented 1 year ago

好的谢谢