Revert to as-is column names
At least until I figure out how options should flow through the whole stack.
This commit is contained in:
parent
85d400e28e
commit
a99b4542ca
1 changed files with 2 additions and 2 deletions
|
|
@ -327,8 +327,8 @@
|
|||
(let [^ResultSetMetaData rsmeta (.getMetaData rs)
|
||||
idxs (range 1 (inc (.getColumnCount rsmeta)))]
|
||||
(mapv (fn [^Integer i]
|
||||
(keyword (str/lower-case (.getTableName rsmeta i))
|
||||
(str/lower-case (.getColumnLabel rsmeta i))))
|
||||
(keyword (.getTableName rsmeta i)
|
||||
(.getColumnLabel rsmeta i)))
|
||||
idxs)))
|
||||
|
||||
(defn- mapify-result-set
|
||||
|
|
|
|||
Loading…
Reference in a new issue