diff --git a/src/next/jdbc/optional.clj b/src/next/jdbc/optional.clj index 298bd61..c96008c 100644 --- a/src/next/jdbc/optional.clj +++ b/src/next/jdbc/optional.clj @@ -76,7 +76,7 @@ locales where the lower case version of a character is not a valid SQL entity name (e.g., Turkish)." [^String s] - (.toLowerCase s (Locale/US))) + (.toLowerCase s Locale/US)) (defn as-lower-maps "Given a `ResultSet` and options, return a `RowBuilder` / `ResultSetBuilder` diff --git a/src/next/jdbc/result_set.clj b/src/next/jdbc/result_set.clj index b9125a7..6818657 100644 --- a/src/next/jdbc/result_set.clj +++ b/src/next/jdbc/result_set.clj @@ -1,4 +1,4 @@ -;; copyright (c) 2018-2021 Sean Corfield, all rights reserved +;; copyright (c) 2018-2024 Sean Corfield, all rights reserved (ns next.jdbc.result-set "An implementation of `ResultSet` handling functions. @@ -90,7 +90,7 @@ locales where the lower case version of a character is not a valid SQL entity name (e.g., Turkish)." [^String s] - (.toLowerCase s (Locale/US))) + (.toLowerCase s Locale/US)) (defn get-lower-column-names "Given `ResultSetMetaData`, return a vector of lower-case column names, each