Details
-
New Feature
-
Status: Open
-
Major
-
Resolution: Unresolved
-
None
-
None
Description
Now we only support time column at the first column of insert sql, like:
insert into root.db.d1(time,s1,s2) values(1,2,3);
And we don't support `` to include the `time`, if we do so, we will get an error:
insert into root.db.d1(`time`,s1,s2) values(1,2,3);
So we want to support the following two cases:
1. time column can be placed at any index of the column list:
insert into root.db.d1(s1,s2,time) values(1,2,3);
2. we can add `` in time column:
insert into root.db.d1(`time`,s1,s2) values(1,2,3);
Attachments
Issue Links
- links to