funcool / clojure.jdbc

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

Wrong isolation level constants in documentation #37

Closed serioga closed 7 years ago

serioga commented 7 years ago

In documentation:

This is a list of supported options:

  • :read-uncommited - Set read uncommited isolation level
  • :read-commited - Set read committed isolation level

In code:

{
   :read-uncommitted Connection/TRANSACTION_READ_UNCOMMITTED
   :read-committed   Connection/TRANSACTION_READ_COMMITTED
}

See the difference in double “t”.

niwinz commented 7 years ago

Thanks, fixed.