[Schmitzm-commits] r1838 - trunk/schmitzm-db/src/main/java/de/schmitzm/postgres
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Tue Jan 24 22:11:53 CET 2012
Author: alfonx
Date: 2012-01-24 22:11:53 +0100 (Tue, 24 Jan 2012)
New Revision: 1838
Modified:
trunk/schmitzm-db/src/main/java/de/schmitzm/postgres/PGColumn.java
Log:
Modified: trunk/schmitzm-db/src/main/java/de/schmitzm/postgres/PGColumn.java
===================================================================
--- trunk/schmitzm-db/src/main/java/de/schmitzm/postgres/PGColumn.java 2012-01-23 22:49:38 UTC (rev 1837)
+++ trunk/schmitzm-db/src/main/java/de/schmitzm/postgres/PGColumn.java 2012-01-24 21:11:53 UTC (rev 1838)
@@ -54,6 +54,8 @@
public boolean isNumeric() {
if (typename.startsWith("float"))
return true;
+ if (typename.startsWith("numeric"))
+ return true;
if (typename.startsWith("serial"))
return true;
if (typename.startsWith("long"))
More information about the Schmitzm-commits
mailing list