Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2009-05-05 11:13:33 +0000
committerEike Stepper2009-05-05 11:13:33 +0000
commit0cc9e6b894a3253f7d644c22525e25f6406aef53 (patch)
treea1078ead88181faad59001702dab6db52f61b800 /plugins/org.eclipse.net4j.db.postgresql
parent7f19a7492f6f8d6878512a2f9a0cc3fbfe97d90a (diff)
downloadcdo-0cc9e6b894a3253f7d644c22525e25f6406aef53.tar.gz
cdo-0cc9e6b894a3253f7d644c22525e25f6406aef53.tar.xz
cdo-0cc9e6b894a3253f7d644c22525e25f6406aef53.zip
formatting
Diffstat (limited to 'plugins/org.eclipse.net4j.db.postgresql')
-rw-r--r--plugins/org.eclipse.net4j.db.postgresql/src/org/eclipse/net4j/db/postgresql/PostgreSQLAdapter.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/org.eclipse.net4j.db.postgresql/src/org/eclipse/net4j/db/postgresql/PostgreSQLAdapter.java b/plugins/org.eclipse.net4j.db.postgresql/src/org/eclipse/net4j/db/postgresql/PostgreSQLAdapter.java
index e589750246..855027fbc6 100644
--- a/plugins/org.eclipse.net4j.db.postgresql/src/org/eclipse/net4j/db/postgresql/PostgreSQLAdapter.java
+++ b/plugins/org.eclipse.net4j.db.postgresql/src/org/eclipse/net4j/db/postgresql/PostgreSQLAdapter.java
@@ -4,7 +4,7 @@
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* Victor Roldan Betancort - initial API and implementation
* Eike Stepper - maintenance
@@ -86,6 +86,7 @@ public class PostgreSQLAdapter extends DBAdapter
case BLOB:
return "text";
}
+
return super.getTypeName(field);
}

Back to the top