YC27 commented on code in PR #13466:
URL: https://github.com/apache/iotdb/pull/13466#discussion_r1751606019
##########
iotdb-core/antlr/src/main/antlr4/org/apache/iotdb/db/qp/sql/IoTDBSqlParser.g4:
##########
@@ -1141,6 +1141,22 @@ loadFileAttributeClause
| ONSUCCESS operator_eq (DELETE|NONE)
;
+// Load TsFile With
+loadFileWith
+ : LOAD fileName=STRING_LITERAL loadFileWithAttributeClauses
+ ;
+
+loadFileWithAttributeClauses
+ : WITH
+ LR_BRACKET
+ (loadFileWithAttributeClause COMMA)* loadFileWithAttributeClause?
+ RR_BRACKET
+ ;
+
+loadFileWithAttributeClause
Review Comment:
I think so, too
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]