1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-04-26 11:48:52 +03:00
2022-12-09 02:24:40 +00:00

9 lines
212 B
Plaintext

USE tpch1;
drop table if exists bug4394;
create table bug4394(c1 datetime) engine=columnstore;
insert into bug4394 values('1000-01-01 00:00:00');
select * from bug4394;
c1
1000-01-01 00:00:00
drop table bug4394;