funcool / clojure.jdbc

JDBC library for Clojure
http://funcool.github.io/clojure.jdbc/latest/
Apache License 2.0
105 stars 26 forks source link

Makes impl/querystring->map handle nil and blank querystrings. #27

Closed scusack closed 8 years ago

scusack commented 8 years ago

Hi,

this just adds some extra guards so that the URI's without query strings don't cause NULL pointer exceptions.

I've added a fix and some tests, there's a check for nil and for "" as they both cause problems later on.

Thanks, Simon.

niwinz commented 8 years ago

Thanks!!