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 f044e85 commit 5f2d4b9Copy full SHA for 5f2d4b9
1 file changed
console/src/main/java/com/arcadedb/console/Console.java
@@ -212,6 +212,8 @@ else if (lineLowerCase.startsWith("rollback"))
212
executeRollback();
213
else if (lineLowerCase.startsWith("set"))
214
executeSet(line.substring("set".length()).trim());
215
+ else if (lineLowerCase.startsWith("--"))
216
+ return true;
217
else {
218
executeSQL(line);
219
}
0 commit comments