We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c663477 commit 02e3517Copy full SHA for 02e3517
iotdb-client/cli/src/main/java/org/apache/iotdb/tool/data/ExportData.java
@@ -238,7 +238,10 @@ public static void main(String[] args) {
238
exportData.exportBySql(values[i], i);
239
}
240
} else {
241
- exportData.exportBySql(queryCommand, 0);
+ String[] values = queryCommand.trim().split(";");
242
+ for (int i = 0; i < values.length; i++) {
243
+ exportData.exportBySql(values[i], i);
244
+ }
245
246
} catch (IOException e) {
247
ioTPrinter.println("Failed to operate on file, because " + e.getMessage());
0 commit comments