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 f62c43f commit 36ed301Copy full SHA for 36ed301
sqldev/src/main/java/org/utplsql/sqldev/model/runner/Run.xtend
@@ -45,7 +45,9 @@ class Run extends AbstractModel {
45
}
46
47
def getName() {
48
- return '''«startTime» («connectionName»)'''
+ val time = startTime.substring(11,19)
49
+ val conn = connectionName?.substring(15)
50
+ return '''«time» («conn»)'''
51
52
53
def void put(List<Item> items) {
0 commit comments