/** * Tests whether the Oracle identifier limit is respected in case of tables. */ @Test public void testOracleTableIdentifierLimit() throws SQLException { int lengthLimit = PhysicalNamingStrategyShogun2.LENGTH_LIMIT_ORACLE; Dialect dialect = new Oracle12cDialect(); testTableIdentifierLimit(lengthLimit, dialect); }
/** * Tests whether the Oracle identifier limit is respected in case of columns. */ @Test public void testOracleColumnIdentifierLimit() throws SQLException { int lengthLimit = PhysicalNamingStrategyShogun2.LENGTH_LIMIT_ORACLE; Dialect dialect = new Oracle12cDialect(); testColumnIdentifierLimit(lengthLimit, dialect); }