| | |
| | | "gisrepo1", "gisrepo2" |
| | | }; |
| | | |
| | | public static final short VSSTATUS_UNKNOWN = 0x0000; |
| | | public static final short VSSTATUS_AVAILABLE= 0x0000; |
| | | public static final short VSSTATUS_USING = 0x0100; |
| | | public static final short VSSTATUS_CONFIG = 0x0020; |
| | | public static final short VSSTATUS_LINKVIEW = 0x0010; |
| | |
| | | sql.append(encodeSchemaTableName(pgSchema, DataReposVersionManager.XGVERSIONTABLE_NAME)); |
| | | sql.append(" (vsschema, vsstatus) VALUES ('"); |
| | | sql.append(schemaName).append("', "); |
| | | sql.append(DataReposVersionManager.VSSTATUS_UNKNOWN).append(" )"); |
| | | sql.append(DataReposVersionManager.VSSTATUS_AVAILABLE).append(" )"); |
| | | stmt.executeUpdate(sql.toString()); |
| | | |
| | | createIfNotExistNewSchema(connection, schemaName); |