Uploaded image for project: 'Apache IoTDB'
  1. Apache IoTDB
  2. IOTDB-6300

Support time column at any column in insert sql

    XMLWordPrintableJSON

Details

    • New Feature
    • Status: Open
    • Major
    • Resolution: Unresolved
    • None
    • None
    • Core/Query

    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

          Activity

            People

              jackietien Yuan Tian
              jackietien Yuan Tian
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

              Dates

                Created:
                Updated: