AliSQL
AliSQL copied to clipboard
AliSQL 5.7/8.0?
Hi!
Is there a possibility to get newer releases for AliSQL 5.7 or 8.0?
Thanks
https://www.percona.com/doc/percona-server/5.7/performance/threadpool.html?
比较乱, alisql 8.0 居然和 mysql 8.0 不兼容。比如这张表 timestamp 就是不兼容的,居然和 mysql 5.7 行为一样。
create table if not exists junit_pipi_test.namelist_decision( id bigint(20) not null auto_increment comment '主键', decision_name varchar(11) not null comment '决策名称', decision_desc varchar(50) comment '决策描述', create_time timestamp comment '创建时间', update_time timestamp comment '更新时间', create_user varchar(20) comment '创建用户', update_user varchar(20) comment '更新用户', primary key(id)) comment '决策表';