Skip to content
Snippets Groups Projects
Unverified Commit 84ba74bd authored by Cam Saul's avatar Cam Saul
Browse files

Code cleanup / indentation fixes :wrench:

parent 4a757af2
Branches
Tags
No related merge requests found
......@@ -228,13 +228,13 @@
"inet" :type/IPAddress
nil))
(def ^:private ^:const ssl-params
(def ^:private ssl-params
"Params to include in the JDBC connection spec for an SSL connection."
{:ssl true
:sslmode "require"
:sslfactory "org.postgresql.ssl.NonValidatingFactory"}) ; HACK Why enable SSL if we disable certificate validation?
(def ^:private ^:const disable-ssl-params
(def ^:private disable-ssl-params
"Params to include in the JDBC connection spec to disable SSL."
{:sslmode "disable"})
......
......@@ -149,7 +149,7 @@
(for [{database-type :type_name
column-name :column_name
remarks :remarks} (jdbc/metadata-result
(.getColumns metadata db-name-or-nil schema table-name nil))]
(.getColumns metadata db-name-or-nil schema table-name nil))]
(merge
{:name column-name
:database-type database-type
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment