lealone / Lealone

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

表字段加上重音符号后, database_to_upper=false 失效了 #237

Closed cbqqkcel closed 1 month ago

cbqqkcel commented 1 month ago
create database if not exists dmy_ts parameters(database_to_upper=false
create sequence if not exists ts_app start with 1;
create table if not exists ts_app
(
    id       bigint default (next value for ts_app) primary key,
    `key`    varchar not null,
    `name`   varchar not null,
    createAt timestamp,
    updateAt timestamp
)

image

cbqqkcel commented 1 month ago

搞错了,我以为h2 sql 语法是用重音符号,原来是双引号

cbqqkcel commented 1 week ago

这里改成这样可以兼容吧 image

codefollower commented 1 week ago

这是个 bug,刚刚已经修复,感谢报告问题。