Yuan Tian created IOTDB-6300:
--------------------------------
Summary: Support time column at any column in insert sql
Key: IOTDB-6300
URL: https://issues.apache.org/jira/browse/IOTDB-6300
Project: Apache IoTDB
Issue Type: New Feature
Components: Core/Query
Reporter: Yuan Tian
Assignee: Yuan Tian
Now we only support time column at the first column of insert sql, like:
{code:java}
insert into root.db.d1(time,s1,s2) values(1,2,3); {code}
And we don't support `` to include the `time`, if we do so, we will get an
error:
{code:java}
insert into root.db.d1(`time`,s1,s2) values(1,2,3); {code}
So we want to support the following two cases:
1. time column can be placed at any index of the column list:
{code:java}
insert into root.db.d1(s1,s2,time) values(1,2,3); {code}
2. we can add `` in time column:
{code:java}
insert into root.db.d1(`time`,s1,s2) values(1,2,3); {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)