Add "Describe" command, with support for describing both (a) specific table(s) and...
[squelch.git] / src / main / java / net / jaekl / squelch / db / PostgresqlDriver.java
index 9020064c90117d03c3c850260b814d2f81681a97..97fd12cf2976b2f95873e611799e86468b5aa671 100644 (file)
@@ -14,4 +14,9 @@ public class PostgresqlDriver extends DbDriver {
        public String getJdbcDriverClassName() {
                return "org.postgresql.Driver";
        }
+
+       @Override
+       public String adjustCase(String input) {
+               return (null == input) ? "" : input;
+       }
 }