Skip to content

Commit

Permalink
repl: dim text color
Browse files Browse the repository at this point in the history
  • Loading branch information
akphi committed Nov 22, 2024
1 parent 850474b commit 733bb99
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public boolean process(String line) throws Exception
{
long startTime = System.currentTimeMillis();
this.client.println(execute(line));
this.client.println(printExecutionTime(startTime));
this.client.printDebug(printExecutionTime(startTime));
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public boolean process(String line) throws Exception
}
this.client.println("Executed SELECT SQL: '" + expression + "'");
this.client.println(prettyGridPrint(result, columnNames, columnNames, 40, 60));
this.client.println(printExecutionTime(startTime));
this.client.printDebug(printExecutionTime(startTime));
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public boolean process(String line) throws Exception
{
statement.executeUpdate(DatabaseManager.fromString(databaseConnection.type.name()).relationalDatabaseSupport().load(tableName, tempFile.getTemporaryPathForFile(), relationalResultColumns));
this.client.println("Cached into table: '" + tableName + "'");
this.client.println(printExecutionTime(startTime));
this.client.printDebug(printExecutionTime(startTime));
}
}
catch (SQLException e)
Expand Down
Empty file added ~/.legend/repl2/history
Empty file.

0 comments on commit 733bb99

Please sign in to comment.