2

I created a database with millisecond precision

create database ms with precision 'ms';

and wrote a timestamp with nanosecond precision into it.

create table ms_t (value BIGINT,tags(str));
insert into ms_t (time,str,value) values (1682049219172428000,'asd',1);

After the write was successful, the select query displayed the following.

enter image description here

I expect the correct result to be returned

cosmic
  • 109
  • 5

0 Answers0