Difference between revisions of "PostgreSQL Adapter-nexj/schema-test"

From CDOT Wiki
Jump to: navigation, search
(Created page with '==Working Inside Schema 'test'== : <code> CREATE TABLE test.xxx </code> :: data types are changed in <code> appendColumnType() </code> in ''PostgreSQLSchemaManager.java'' based …')
(No difference)

Revision as of 11:31, 10 December 2010

Working Inside Schema 'test'

CREATE TABLE test.xxx
data types are changed in appendColumnType() in PostgreSQLSchemaManager.java based on each jdbc type's equivalent in PostgreSQL.
The implementation in crateTextTable in file PostgreSQLSchemaManager.java is removed for now (base class's version is being called).
CREATE INDEX test.xxx
CREATE Trigger test.xxx // if it's needed for PostgreSQL as well as MySQL
  • Modifications