Fix column name when table name not known
This commit is contained in:
parent
69324ccbe6
commit
4741db1453
1 changed files with 1 additions and 1 deletions
|
|
@ -363,7 +363,7 @@
|
|||
(let [^ResultSetMetaData rsmeta (.getMetaData rs)
|
||||
idxs (range 1 (inc (.getColumnCount rsmeta)))]
|
||||
(mapv (fn [^Integer i]
|
||||
(keyword (.getTableName rsmeta i)
|
||||
(keyword (not-empty (.getTableName rsmeta i))
|
||||
(.getColumnLabel rsmeta i)))
|
||||
idxs)))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue