bugged
stringlengths
6
599k
fixed
stringlengths
10
599k
__index_level_0__
int64
0
1.13M
public static void doJars(String dbName, Connection conn) throws SQLException { String separator = System.getProperty("file.separator"); Statement stmt = conn.createStatement(); ResultSet rs = stmt.executeQuery("SELECT FILENAME, SCHEMAID, " + "GENERATIONID FROM SYS.SYSFILES"); boolean firstTime = true; while (...
public static void doJars(String dbName, Connection conn) throws SQLException { String separator = System.getProperty("file.separator"); Statement stmt = conn.createStatement(); ResultSet rs = stmt.executeQuery("SELECT FILENAME, SCHEMAID, " + "GENERATIONID FROM SYS.SYSFILES"); boolean firstTime = true; while (...
1,102,669
public static void doTables(Connection conn, HashMap tableIdToNameMap) throws SQLException { // Prepare some statements for general use by this class. getColumnInfoStmt = conn.prepareStatement("SELECT C.COLUMNNAME, C.REFERENCEID, " + "C.COLUMNNUMBER FROM SYS.SYSCOLUMNS C, SYS.SYSTABLES T WHERE T.TABLEID = ? " +...
public static void doTables(Connection conn, HashMap tableIdToNameMap) throws SQLException { // Prepare some statements for general use by this class. getColumnInfoStmt = conn.prepareStatement("SELECT C.COLUMNNAME, C.REFERENCEID, " + "C.COLUMNNUMBER FROM SYS.SYSCOLUMNS C, SYS.SYSTABLES T WHERE T.TABLEID = ? " +...
1,102,670
public static void doIndexes(Connection conn) throws SQLException { Statement stmt = conn.createStatement(); ResultSet rs = stmt.executeQuery("SELECT TABLEID, CONGLOMERATENAME, " + "DESCRIPTOR, SCHEMAID, ISINDEX, ISCONSTRAINT FROM SYS.SYSCONGLOMERATES " + "ORDER BY TABLEID"); boolean firstTime = true; while (...
public static void doIndexes(Connection conn) throws SQLException { Statement stmt = conn.createStatement(); ResultSet rs = stmt.executeQuery("SELECT TABLEID, CONGLOMERATENAME, " + "DESCRIPTOR, SCHEMAID, ISINDEX, ISCONSTRAINT FROM SYS.SYSCONGLOMERATES " + "ORDER BY TABLEID"); boolean firstTime = true; while (...
1,102,671
public static void doChecks(Connection conn) throws SQLException { Statement stmt = conn.createStatement(); ResultSet rs = stmt.executeQuery("SELECT CS.CONSTRAINTNAME, " + "CS.TABLEID, CS.SCHEMAID, CK.CHECKDEFINITION FROM SYS.SYSCONSTRAINTS CS, " + "SYS.SYSCHECKS CK WHERE CS.CONSTRAINTID = " + "CK.CONSTRAINTI...
public static void doChecks(Connection conn) throws SQLException { Statement stmt = conn.createStatement(); ResultSet rs = stmt.executeQuery("SELECT CS.CONSTRAINTNAME, " + "CS.TABLEID, CS.SCHEMAID, CK.CHECKDEFINITION FROM SYS.SYSCONSTRAINTS CS, " + "SYS.SYSCHECKS CK WHERE CS.CONSTRAINTID = " + "CK.CONSTRAINTI...
1,102,672
public static void doViews(Connection conn) throws SQLException { Statement stmt = conn.createStatement(); ResultSet rs = stmt.executeQuery("SELECT V.VIEWDEFINITION, " + "T.TABLENAME, T.SCHEMAID, V.COMPILATIONSCHEMAID FROM SYS.SYSVIEWS V, " + "SYS.SYSTABLES T WHERE T.TABLEID = V.TABLEID"); boolean firstTime = ...
public static void doViews(Connection conn) throws SQLException { Statement stmt = conn.createStatement(); ResultSet rs = stmt.executeQuery("SELECT V.VIEWDEFINITION, " + "T.TABLENAME, T.SCHEMAID, V.COMPILATIONSCHEMAID FROM SYS.SYSVIEWS V, " + "SYS.SYSTABLES T WHERE T.TABLEID = V.TABLEID"); boolean firstTime = ...
1,102,673
public static void doViews(Connection conn) throws SQLException { Statement stmt = conn.createStatement(); ResultSet rs = stmt.executeQuery("SELECT V.VIEWDEFINITION, " + "T.TABLENAME, T.SCHEMAID, V.COMPILATIONSCHEMAID FROM SYS.SYSVIEWS V, " + "SYS.SYSTABLES T WHERE T.TABLEID = V.TABLEID"); boolean firstTime = ...
public static void doViews(Connection conn) throws SQLException { Statement stmt = conn.createStatement(); ResultSet rs = stmt.executeQuery("SELECT V.VIEWDEFINITION, " + "T.TABLENAME, T.SCHEMAID, V.COMPILATIONSCHEMAID FROM SYS.SYSVIEWS V, " + "SYS.SYSTABLES T WHERE T.TABLEID = V.TABLEID"); boolean firstTime = ...
1,102,674
public static void doTriggers (Connection conn) throws SQLException { Statement stmt = conn.createStatement(); ResultSet rs = stmt.executeQuery("SELECT TRIGGERNAME, SCHEMAID, " + "EVENT, FIRINGTIME, TYPE, TABLEID, REFERENCEDCOLUMNS, " + "TRIGGERDEFINITION, REFERENCINGOLD, REFERENCINGNEW, OLDREFERENCINGNAME, " ...
public static void doTriggers (Connection conn) throws SQLException { Statement stmt = conn.createStatement(); ResultSet rs = stmt.executeQuery("SELECT TRIGGERNAME, SCHEMAID, " + "EVENT, FIRINGTIME, TYPE, TABLEID, REFERENCEDCOLUMNS, " + "TRIGGERDEFINITION, REFERENCINGOLD, REFERENCINGNEW, OLDREFERENCINGNAME, " ...
1,102,675
public static boolean cleanup() { try { if (atLeastOneDebug) dblook.writeVerboseOutput( "CSLOOK_AtLeastOneDebug", null); logFile.close(); if (ddlFile != null) ddlFile.close(); } catch (Exception e) { System.out.println("Error releasing resources: " + e); return false; } return true; }
public static boolean cleanup() { try { if (atLeastOneDebug) dblook.writeVerboseOutput( "DBLOOK_AtLeastOneDebug", null); logFile.close(); if (ddlFile != null) ddlFile.close(); } catch (Exception e) { System.out.println("Error releasing resources: " + e); return false; } return true; }
1,102,676
public static void main(String[] args) throws Throwable { isDerbyNet = TestUtil.isNetFramework(); Connection con; ResultSetMetaData met; ResultSet rs; Statement stmt; String[] columnNames = {"i", "s", "r", "d", "dt", "t", "ts", "c", "v", "dc", "bi", "cbd", "vbd", "lvbd", "cl", "bl"}; System.out.println(...
public static void main(String[] args) throws Throwable { isDerbyNet = TestUtil.isNetFramework(); Connection con; ResultSetMetaData met; ResultSet rs; Statement stmt; String[] columnNames = {"i", "s", "r", "d", "dt", "t", "ts", "c", "v", "dc", "bi", "cbd", "vbd", "lvbd", "cl", "bl"}; System.out.println(...
1,102,677
public SQLBit(byte[] val) { dataValue = val; }
public SQLBit() { dataValue = val; }
1,102,678
public SQLBit(byte[] val) { dataValue = val; }
public SQLBit(byte[] val) { }
1,102,679
public AsciiStream(String materializedString, java.io.Reader reader) { reader_ = reader; materializedString_ = materializedString; }
public AsciiStream(String materializedString, java.io.Reader reader) { reader_ = reader; materializedString_ = materializedString; }
1,102,680
public ClobWriter(Clob clob, long offset) throws SqlException { clob_ = clob; offset_ = offset; if (offset_ - 1 > clob_.sqlLength_) { throw new SqlException(clob_.agent_.logWriter_, "Invalid position: " + offset); } }
public ClobWriter(Clob clob, long offset) throws SqlException { clob_ = clob; offset_ = offset; if (offset_ - 1 > clob_.sqlLength_) { throw new SqlException(clob_.agent_.logWriter_, "Invalid position: " + offset); } }
1,102,681
collectClassesFromConnectionPoolDataSource(Set<ClassInfo> classes) throws SQLException { ConnectionPoolDataSource cpds = getConnectionPoolDataSource(); addClass(classes, cpds.getClass(), javax.sql.ConnectionPoolDataSource.class); PooledConnection pc = cp...
collectClassesFromConnectionPoolDataSource(Set<ClassInfo> classes) throws SQLException { ConnectionPoolDataSource cpds = TestDataSourceFactory.getConnectionPoolDataSource(); addClass(classes, cpds.getClass(), javax.sql.ConnectionPoolDataSource.class); PooledConnect...
1,102,682
private static void collectClassesFromDataSource(Set<ClassInfo> classes) throws SQLException { DataSource ds = getDataSource(); addClass(classes, ds.getClass(), javax.sql.DataSource.class); collectClassesFromConnection(ds.getConnection (CONFIG.getUs...
private static void collectClassesFromDataSource(Set<ClassInfo> classes) throws SQLException { DataSource ds = TestDataSourceFactory.getDataSource(); addClass(classes, ds.getClass(), javax.sql.DataSource.class); collectClassesFromConnection(ds.getConnection ...
1,102,683
private static void collectClassesFromXADataSource(Set<ClassInfo> classes) throws SQLException { XADataSource xads = getXADataSource(); addClass(classes, xads.getClass(), javax.sql.XADataSource.class); XAConnection xaconn = xads.getXAConnection(CONFIG.getUserName(), ...
private static void collectClassesFromXADataSource(Set<ClassInfo> classes) throws SQLException { XADataSource xads = TestDataSourceFactory.getXADataSource(); addClass(classes, xads.getClass(), javax.sql.XADataSource.class); XAConnection xaconn = xads.getXAConnection(CONFIG.getUserName...
1,102,684
public String toString() { if ( idString == null ) { idString = Integer.toString(connectionId); } return idString; }
public String toString() { if ( connString == null ) { idString = Integer.toString(connectionId); } return idString; }
1,102,686
public String toString() { if ( idString == null ) { idString = Integer.toString(connectionId); } return idString; }
public String toString() { if ( idString == null ) { idString = Integer.toString(connectionId); } return idString; }
1,102,687
public String toString() { if ( idString == null ) { idString = Integer.toString(connectionId); } return idString; }
public String toString() { if ( idString == null ) { idString = Integer.toString(connectionId); } return connString; }
1,102,688
protected abstract void accumulate(DataValueDescriptor addend) throws StandardException;
protected abstract void accumulate(DataValueDescriptor addend) throws StandardException;
1,102,689
public XAXactId(Xid xid) throws XAException { if (xid == null) throw new XAException(XAException.XAER_NOTA); copy_init_xid( xid.getFormatId(), xid.getGlobalTransactionId(), xid.getBranchQualifier()); }
public XAXactId( int format_id, byte[] global_id, byte[] branch_id) { if (xid == null) throw new XAException(XAException.XAER_NOTA); copy_init_xid( xid.getFormatId(), xid.getGlobalTransactionId(), xid.getBranchQualifier()); }
1,102,693
public XAXactId(Xid xid) throws XAException { if (xid == null) throw new XAException(XAException.XAER_NOTA); copy_init_xid( xid.getFormatId(), xid.getGlobalTransactionId(), xid.getBranchQualifier()); }
public XAXactId(Xid xid) throws XAException { if (xid == null) throw new XAException(XAException.XAER_NOTA); copy_init_xid( xid.getFormatId(), xid.getGlobalTransactionId(), xid.getBranchQualifier()); }
1,102,694
boolean end(EmbedXAConnection resource, int flags, boolean endingCurrentXid) throws XAException { boolean rollbackOnly = false; synchronized (this) { boolean isSuspendedByResource = (suspendedList != null) && (suspendedList.get(resource) != null); if (!endingCurrentXid) { while (associationState == XATransact...
boolean end(EmbedXAResource resource, int flags, boolean endingCurrentXid) throws XAException { boolean rollbackOnly = false; synchronized (this) { boolean isSuspendedByResource = (suspendedList != null) && (suspendedList.get(resource) != null); if (!endingCurrentXid) { while (associationState == XATransactio...
1,102,695
XATransactionState(ContextManager cm, EmbedConnection conn, EmbedXAConnection resource, XAXactId xid) { super(cm, "XATransactionState"); this.conn = conn; this.associatedResource = resource; this.creatingResource = resource; this.associationState = XATransactionState.T1_ASSOCIATED; this.xid = xid; }
XATransactionState(ContextManager cm, EmbedConnection conn, EmbedXAResource resource, XAXactId xid) { super(cm, "XATransactionState"); this.conn = conn; this.associatedResource = resource; this.creatingResource = resource; this.associationState = XATransactionState.T1_ASSOCIATED; this.xid = xid; }
1,102,696
void start(EmbedXAConnection resource, int flags) throws XAException { synchronized (this) { if (associationState == XATransactionState.TRO_FAIL) throw new XAException(rollbackOnlyCode); boolean isSuspendedByResource = (suspendedList != null) && (suspendedList.get(resource) != null); if (flags == XAResource....
void start(EmbedXAResource resource, int flags) throws XAException { synchronized (this) { if (associationState == XATransactionState.TRO_FAIL) throw new XAException(rollbackOnlyCode); boolean isSuspendedByResource = (suspendedList != null) && (suspendedList.get(resource) != null); if (flags == XAResource.TM...
1,102,697
XAStatementControl(EmbedXAConnection xaConnection, Statement realStatement) throws SQLException { this(xaConnection); this.realStatement = realStatement; this.applicationStatement = applicationConnection.newBrokeredStatement(this); }
XAStatementControl(EmbedXAConnection xaConnection, Statement realStatement) throws SQLException { this(xaConnection); this.realStatement = realStatement; this.applicationStatement = applicationConnection.newBrokeredStatement(this); }
1,102,698
public void addStatementEventListener(StatementEventListener listener) { throw new UnsupportedOperationException ( "addStatementEventListener(StatementEventListener listener)"); }
public void addStatementEventListener(StatementEventListener listener) { throw new UnsupportedOperationException ( "addStatementEventListener(StatementEventListener listener)"); }
1,102,699
public void removeStatementEventListener(StatementEventListener listener) { throw new UnsupportedOperationException ( "addStatementEventListener(StatementEventListener listener)"); }
public void removeStatementEventListener(StatementEventListener listener) { throw new UnsupportedOperationException ( "addStatementEventListener(StatementEventListener listener)"); }
1,102,700
private void flowExecute(int executeType, String sql) throws SqlException { checkForClosedStatement(); // Per jdbc spec (see java.sql.Statement.close() javadoc) checkAutoGeneratedKeysParameters(); clearWarningsX(); // Per jdbc spec 0.7, and getWarnings() javadoc sql = escape(sql); ...
private void flowExecute(int executeType, String sql) throws SqlException { checkForClosedStatement(); // Per jdbc spec (see java.sql.Statement.close() javadoc) checkAutoGeneratedKeysParameters(); clearWarningsX(); // Per jdbc spec 0.7, and getWarnings() javadoc sql = escape(sql); ...
1,102,702
private void flowExecute(int executeType, String sql) throws SqlException { checkForClosedStatement(); // Per jdbc spec (see java.sql.Statement.close() javadoc) checkAutoGeneratedKeysParameters(); clearWarningsX(); // Per jdbc spec 0.7, and getWarnings() javadoc sql = escape(sql); ...
private void flowExecute(int executeType, String sql) throws SqlException { checkForClosedStatement(); // Per jdbc spec (see java.sql.Statement.close() javadoc) checkAutoGeneratedKeysParameters(); clearWarningsX(); // Per jdbc spec 0.7, and getWarnings() javadoc sql = escape(sql); ...
1,102,703
protected void removeClientCursorNameFromCache() { if (cursorName_ != null) { connection_.clientCursorNameCache_.remove(cursorName_); cursorName_ = null; } }
protected void removeClientCursorNameFromCache() { if (cursorName_ != null && connection_.clientCursorNameCache_.containsKey(cursorName_)) { connection_.clientCursorNameCache_.remove(cursorName_); cursorName_ = null; } }
1,102,704
protected void removeClientCursorNameFromCache() { if (cursorName_ != null) { connection_.clientCursorNameCache_.remove(cursorName_); cursorName_ = null; } }
protected void removeClientCursorNameFromCache() { if (cursorName_ != null) { connection_.clientCursorNameCache_.remove(cursorName_); } }
1,102,705
public void setCursorName(String name) throws SQLException { try { synchronized (connection_) { if (agent_.loggingEnabled()) { agent_.logWriter_.traceEntry(this, "setCursorName", name); } checkForClosedStatement(); // Per jdbc ...
public void setCursorName(String name) throws SQLException { try { synchronized (connection_) { if (agent_.loggingEnabled()) { agent_.logWriter_.traceEntry(this, "setCursorName", name); } checkForClosedStatement(); // Per jdbc ...
1,102,706
public void setCursorName(String name) throws SQLException { try { synchronized (connection_) { if (agent_.loggingEnabled()) { agent_.logWriter_.traceEntry(this, "setCursorName", name); } checkForClosedStatement(); // Per jdbc ...
public void setCursorName(String name) throws SQLException { try { synchronized (connection_) { if (agent_.loggingEnabled()) { agent_.logWriter_.traceEntry(this, "setCursorName", name); } checkForClosedStatement(); // Per jdbc ...
1,102,707
public TagScript(Tag tag) { this.tag = tag; }
public TagScript(Tag tag) { this.tag = tag; }
1,102,708
public void openCore() throws StandardException { TransactionController tc; beginTime = getCurrentTimeMillis(); if (SanityManager.DEBUG) SanityManager.ASSERT( ! isOpen, "HashScanResultSet already open"); // Get the current transaction controller tc = activation.getTransactionController(); if ...
public void openCore() throws StandardException { TransactionController tc; beginTime = getCurrentTimeMillis(); if (SanityManager.DEBUG) SanityManager.ASSERT( ! isOpen, "HashScanResultSet already open"); // Get the current transaction controller tc = activation.getTransactionController(); if ...
1,102,709
public GenericColumnDescriptor(ResultColumnDescriptor rcd) { name = rcd.getName(); tableName = rcd.getSourceTableName(); schemaName = rcd.getSourceSchemaName(); columnPos = rcd.getColumnPosition(); type = rcd.getType(); isAutoincrement = rcd.isAutoincrement(); updatableByCursor = rcd.updatableByCursor(); }
public GenericColumnDescriptor() { name = rcd.getName(); tableName = rcd.getSourceTableName(); schemaName = rcd.getSourceSchemaName(); columnPos = rcd.getColumnPosition(); type = rcd.getType(); isAutoincrement = rcd.isAutoincrement(); updatableByCursor = rcd.updatableByCursor(); }
1,102,710
public GenericColumnDescriptor(ResultColumnDescriptor rcd) { name = rcd.getName(); tableName = rcd.getSourceTableName(); schemaName = rcd.getSourceSchemaName(); columnPos = rcd.getColumnPosition(); type = rcd.getType(); isAutoincrement = rcd.isAutoincrement(); updatableByCursor = rcd.updatableByCursor(); }
public GenericColumnDescriptor(ResultColumnDescriptor rcd) { name = rcd.getName(); tableName = rcd.getSourceTableName(); schemaName = rcd.getSourceSchemaName(); columnPos = rcd.getColumnPosition(); type = rcd.getType(); isAutoincrement = rcd.isAutoincrement(); updatableByCursor = rcd.updatableByCursor(); }
1,102,711
public ComponentTag(Factory factory) { this.factory = factory; }
public ComponentTag(Factory factory) { this.factory = factory; }
1,102,712
public Activation getActivation() { if (SanityManager.DEBUG) SanityManager.THROWASSERT("getActivation() called for " + getClass()); return null; }
public Activation getActivation() { if (SanityManager.DEBUG) SanityManager.THROWASSERT("getActivation() called for " + getClass()); return null; }
1,102,713
public static TemporaryRowHolderResultSet getNewRSOnCurrentRow ( TransactionController tc, CursorResultSet rs ) throws StandardException { TemporaryRowHolderImpl singleRow = new TemporaryRowHolderImpl(tc, null, rs.getResultDescription()); singleRow.insert(rs.getCurrentRow()); return (TemporaryRowHolderResultSet...
public static TemporaryRowHolderResultSet getNewRSOnCurrentRow ( Activation activation, CursorResultSet rs ) throws StandardException { TemporaryRowHolderImpl singleRow = new TemporaryRowHolderImpl(tc, null, rs.getResultDescription()); singleRow.insert(rs.getCurrentRow()); return (TemporaryRowHolderResultSet...
1,102,714
public static TemporaryRowHolderResultSet getNewRSOnCurrentRow ( TransactionController tc, CursorResultSet rs ) throws StandardException { TemporaryRowHolderImpl singleRow = new TemporaryRowHolderImpl(tc, null, rs.getResultDescription()); singleRow.insert(rs.getCurrentRow()); return (TemporaryRowHolderResultSet...
public static TemporaryRowHolderResultSet getNewRSOnCurrentRow ( TransactionController tc, CursorResultSet rs ) throws StandardException { TemporaryRowHolderImpl singleRow = new TemporaryRowHolderImpl(activation, null, rs.getResultDescription()); singleRow.insert(rs.getCurrentRow()); return (TemporaryRowHolderR...
1,102,715
public void boot(boolean create, Properties properties) throws StandardException { dataDirectory = properties.getProperty(PersistentService.ROOT); DaemonFactory daemonFactory = (DaemonFactory)Monitor.startSystemModule(org.apache.derby.iapi.reference.Module.DaemonFactory); rawStoreDaemon = daemonFactory.createNew...
public void boot(boolean create, Properties properties) throws StandardException { dataDirectory = properties.getProperty(PersistentService.ROOT); DaemonFactory daemonFactory = (DaemonFactory)Monitor.startSystemModule(org.apache.derby.iapi.reference.Module.DaemonFactory); rawStoreDaemon = daemonFactory.createNew...
1,102,716
public void boot(boolean create, Properties properties) throws StandardException { dataDirectory = properties.getProperty(PersistentService.ROOT); DaemonFactory daemonFactory = (DaemonFactory)Monitor.startSystemModule(org.apache.derby.iapi.reference.Module.DaemonFactory); rawStoreDaemon = daemonFactory.createNew...
public void boot(boolean create, Properties properties) throws StandardException { dataDirectory = properties.getProperty(PersistentService.ROOT); DaemonFactory daemonFactory = (DaemonFactory)Monitor.startSystemModule(org.apache.derby.iapi.reference.Module.DaemonFactory); rawStoreDaemon = daemonFactory.createNew...
1,102,717
public void configureDatabaseForEncryption(Properties properties, boolean reEncrypt, CipherFactory newCipherFactory) throws StandardException { // check if the database can be encrypted. canEncrypt...
public void configureDatabaseForEncryption(Properties properties, CipherFactory newCipherFactory) throws StandardException { // check if the database can be encrypted. canEncryptDatabase(reEncrypt...
1,102,718
private void setupEncryptionEngines(boolean create, String restoreFromBackup, Properties properties) throws StandardException { // check if user has requested to encrypt the database or it is an...
private void setupEncryptionEngines(boolean create, String restoreFromBackup, Properties properties) throws StandardException { // check if user has requested to encrypt the database or it is an...
1,102,720
private void setupEncryptionEngines(boolean create, String restoreFromBackup, Properties properties) throws StandardException { // check if user has requested to encrypt the database or it is an...
private void setupEncryptionEngines(boolean create, String restoreFromBackup, Properties properties) throws StandardException { // check if user has requested to encrypt the database or it is an...
1,102,721
public ExecRow makeSYSSTATEMENTSrow( boolean compileMe, SPSDescriptor spsDescriptor ) throws StandardException { DataTypeDescriptor dtd; ExecRow row; DataValueDescriptor col; String name = null; UUID uuid = null; String uuidStr = null; String suuidStr = null; // schema String ...
public ExecRow makeSYSSTATEMENTSrow( boolean compileMe, SPSDescriptor spsDescriptor ) throws StandardException { DataTypeDescriptor dtd; ExecRow row; DataValueDescriptor col; String name = null; UUID uuid = null; String uuidStr = null; String suuidStr = null; // schema String ...
1,102,723
public ColumnDescriptor(String columnName, int columnPosition, DataTypeDescriptor columnType, DataValueDescriptor columnDefault, DefaultInfo columnDefaultInfo, UUID uuid, UUID defaultUUID, long autoincStart, long autoincInc, boolean autoinc) { this.columnName = columnName; this.columnPosition = columnPosi...
public ColumnDescriptor(String columnName, int columnPosition, DataTypeDescriptor columnType, DataValueDescriptor columnDefault, DefaultInfo columnDefaultInfo, UUID uuid, UUID defaultUUID, long autoincStart, long autoincInc, boolean autoinc) { this.columnName = columnName; this.columnPosition = columnPosi...
1,102,724
public ColumnDescriptor(String columnName, int columnPosition, DataTypeDescriptor columnType, DataValueDescriptor columnDefault, DefaultInfo columnDefaultInfo, UUID uuid, UUID defaultUUID, long autoincStart, long autoincInc, boolean autoinc) { this.columnName = columnName; this.columnPosition = columnPosi...
public ColumnDescriptor(String columnName, int columnPosition, DataTypeDescriptor columnType, DataValueDescriptor columnDefault, DefaultInfo columnDefaultInfo, UUID uuid, UUID defaultUUID, long autoincStart, long autoincInc, boolean autoinc) { this.columnName = columnName; this.columnPosition = columnPosi...
1,102,725
DD_Version( DataDictionaryImpl bootingDictionary, int majorVersionNumber) { this.majorVersionNumber = majorVersionNumber; this.minorVersionNumber = getJBMSMinorVersionNumber(); this.bootingDictionary = bootingDictionary; }
DD_Version( DataDictionaryImpl bootingDictionary, int majorVersionNumber) { this.majorVersionNumber = majorVersionNumber; this.minorVersionNumber = getJBMSMinorVersionNumber(); this.bootingDictionary = bootingDictionary; }
1,102,726
public RoutineAliasInfo(String methodName, int parameterCount, String[] parameterNames, TypeDescriptor[] parameterTypes, int[] parameterModes, int dynamicResultSets, short parameterStyle, short sqlAllowed, boolean calledOnNullInput, TypeDescriptor returnType) { super(methodName); this.parameterCount = parameterCou...
public RoutineAliasInfo(String methodName, int parameterCount, String[] parameterNames, TypeDescriptor[] parameterTypes, int[] parameterModes, int dynamicResultSets, short parameterStyle, short sqlAllowed, boolean calledOnNullInput, TypeDescriptor returnType) { super(methodName); this.parameterCount = parameterCou...
1,102,727
public static DataTypeDescriptor getBuiltInDataTypeDescriptor ( String sqlTypeName ) { return new DataTypeDescriptor(TypeId.getBuiltInTypeId(sqlTypeName), true); }
public static DataTypeDescriptor getBuiltInDataTypeDescriptor ( int jdbcType ) { return new DataTypeDescriptor(TypeId.getBuiltInTypeId(sqlTypeName), true); }
1,102,728
public static DataTypeDescriptor getBuiltInDataTypeDescriptor ( String sqlTypeName ) { return new DataTypeDescriptor(TypeId.getBuiltInTypeId(sqlTypeName), true); }
public static DataTypeDescriptor getBuiltInDataTypeDescriptor ( String sqlTypeName ) { return DataTypeDescriptor.getBuiltInDataTypeDescriptor(jdbcType, true); }
1,102,729
public TableDescriptor ( DataDictionary dataDictionary, String tableName, SchemaDescriptor schema, int tableType, char lockGranularity ) { super( dataDictionary ); this.schema = schema; this.tableName = tableName; this.tableType = tableType; this.lockGranularity = lockGranularity; this.conglom...
public TableDescriptor ( DataDictionary dataDictionary, String tableName, SchemaDescriptor schema, int tableType, boolean onCommitDeleteRows, boolean onRollbackDeleteRows ) { super( dataDictionary ); this.schema = schema; this.tableName = tableName; this.tableType = tableType; this.lockGranu...
1,102,730
public TableDescriptor ( DataDictionary dataDictionary, String tableName, SchemaDescriptor schema, int tableType, char lockGranularity ) { super( dataDictionary ); this.schema = schema; this.tableName = tableName; this.tableType = tableType; this.lockGranularity = lockGranularity; this.conglom...
public TableDescriptor ( DataDictionary dataDictionary, String tableName, SchemaDescriptor schema, int tableType, char lockGranularity ) { this(dataDictionary, tableName, schema, tableType, '\0'); this.schema = schema; this.tableName = tableName; this.tableType = tableType; this.lockGranularity...
1,102,731
public TableDescriptor ( DataDictionary dataDictionary, String tableName, SchemaDescriptor schema, int tableType, char lockGranularity ) { super( dataDictionary ); this.schema = schema; this.tableName = tableName; this.tableType = tableType; this.lockGranularity = lockGranularity; this.conglom...
public TableDescriptor ( DataDictionary dataDictionary, String tableName, SchemaDescriptor schema, int tableType, char lockGranularity ) { super( dataDictionary ); this.schema = schema; this.tableName = tableName; this.tableType = tableType; this.lockGranularity = lockGranularity; this.conglom...
1,102,732
public void updateRow( ExecIndexRow key, ExecRow newRow, int indexNumber, boolean[] indicesToUpdate, int[] colsToUpdate, TransactionController tc ) throws StandardException;
public void updateRow( ExecIndexRow key, ExecRow[] newRows, int indexNumber, boolean[] indicesToUpdate, int[] colsToUpdate, TransactionController tc ) throws StandardException;
1,102,733
public ExecRow makeRow(TupleDescriptor td, TupleDescriptor parent) throws StandardException { ExecRow row; DataValueDescriptor col; String colName = null; String defaultID = null; String tabID = null; Integer colID = null; TypeDescriptorImpl typeDesc = null; Object defaultSeria...
public ExecRow makeRow(TupleDescriptor td, TupleDescriptor parent) throws StandardException { ExecRow row; DataValueDescriptor col; String colName = null; String defaultID = null; String tabID = null; Integer colID = null; TypeDescriptorImpl typeDesc = null; Object defaultSeria...
1,102,734
public void updateConglomerateDescriptor(ConglomerateDescriptor cd, long conglomerateNumber, TransactionController tc) throws StandardException;
public void updateConglomerateDescriptor(ConglomerateDescriptor[] cds, long conglomerateNumber, TransactionController tc) throws StandardException;
1,102,735
public boolean supportsOpenCursorsAcrossCommit() { return false; }
public boolean supportsOpenCursorsAcrossCommit() { return true; }
1,102,736
private static void getProperties(Properties sp) throws Exception { // Get any properties specified on the command line searchCP = sp.getProperty("ij.searchClassPath"); framework = sp.getProperty("framework"); if (framework == null) framework = "embedded"; if (!verifyFramework(framework...
private static JavaVersionHolder getProperties(Properties sp) throws Exception { // Get any properties specified on the command line searchCP = sp.getProperty("ij.searchClassPath"); framework = sp.getProperty("framework"); if (framework == null) framework = "embedded"; if (!verifyFramew...
1,102,737
public static void main(String[] args) throws Exception { skiptestReason.setLength(0); // 0 out for useprocess // Determine the test type if (args.length == 0) { // No script name provided System.out.println("no test name provided"); System.exit(1); } scriptName = args[0]; if (Boolean.getBoolean("listOnl...
public static void main(String[] args) throws Exception { skiptestReason.setLength(0); // 0 out for useprocess // Determine the test type if (args.length == 0) { // No script name provided System.out.println("no test name provided"); System.exit(1); } scriptName = args[0]; if (Boolean.getBoolean("listOnl...
1,102,739
public static void main(String[] args) throws Exception { skiptestReason.setLength(0); // 0 out for useprocess // Determine the test type if (args.length == 0) { // No script name provided System.out.println("no test name provided"); System.exit(1); } scriptName = args[0]; if (Boolean.getBoolean("listOnl...
public static void main(String[] args) throws Exception { skiptestReason.setLength(0); // 0 out for useprocess // Determine the test type if (args.length == 0) { // No script name provided System.out.println("no test name provided"); System.exit(1); } scriptName = args[0]; if (Boolean.getBoolean("listOnl...
1,102,740
public static void copyFiles(File outDir, String suppFiles) throws ClassNotFoundException, IOException { // suppFiles is a comma separated list of the files StringTokenizer st = new StringTokenizer(suppFiles,","); String scriptName = ""; // example: test/math.sql InputStream is = null; // To be use...
public static void copyFiles(File outDir, String suppFiles) throws ClassNotFoundException, IOException { // suppFiles is a comma separated list of the files StringTokenizer st = new StringTokenizer(suppFiles,","); String scriptName = ""; // example: test/math.sql InputStream is = null; // To be use...
1,102,742
public static void main(String[] args) throws IOException, ParseException, FileNotFoundException { String cmdFilePath; InputStream in; String cmdFile; mtTester[] testers; int i; int max; if ((cmdFile = util.getFileArg(args)) == null) { syntax(); return; } LocalizedResource.getInstance(); testName = g...
public static void main(String[] args) throws IOException, ParseException, FileNotFoundException { String cmdFilePath; InputStream in; String cmdFile; mtTester[] testers; int i; int max; if ((cmdFile = util.getFileArg(args)) == null) { syntax(); return; } LocalizedResource.getInstance(); testName = g...
1,102,743
public static void main(String[] args) throws IOException, ParseException, FileNotFoundException { String cmdFilePath; InputStream in; String cmdFile; mtTester[] testers; int i; int max; if ((cmdFile = util.getFileArg(args)) == null) { syntax(); return; } LocalizedResource.getInstance(); testName = g...
public static void main(String[] args) throws IOException, ParseException, FileNotFoundException { String cmdFilePath; InputStream in; String cmdFile; mtTester[] testers; int i; int max; if ((cmdFile = util.getFileArg(args)) == null) { syntax(); return; } LocalizedResource.getInstance(); testName = g...
1,102,744
public boolean Wait() throws IOException { synchronized(this) { if (timeout > 0) { long millis = System.currentTimeMillis(); long diff = millis - startTime; int mins = (int) (diff / (1000 * 60)); if (mins > timeout) { return interrupted; } } try { while (!finished && !interrupt...
public boolean Wait() throws IOException { synchronized(this) { if (timeout > 0) { long millis = System.currentTimeMillis(); long diff = millis - startTime; int mins = (int) (diff / (1000 * 60)); if (mins > timeout) { return interrupted; } } try { while (!finished && !interrupt...
1,102,745
public void exec(String jvmName, String javaCmd, String classpath, String framework, PrintWriter pw, boolean useprocess) throws Exception { if ( useprocess == true ) { // Create a process to run sysinfo Process pr = null; jvm javavm = null; // to quiet the compiler ...
public void exec(String jvmName, String javaCmd, String classpath, String framework, PrintWriter pw, boolean useprocess) throws Exception { if ( useprocess == true ) { // Create a process to run sysinfo Process pr = null; jvm javavm = null; // to quiet the compiler ...
1,102,747
public NetServer(File homeDir, String jvmName, String clPath, String javaCmd, String jvmflags, String framework) throws Exception { this.homeDir = homeDir; this.jvmName = jvmName; this.clPath = clPath; this.javaCmd = javaCmd; this.jvmflags = jvmflags; this.framework = framework...
public NetServer(File homeDir, String jvmName, String clPath, String javaCmd, String jvmflags, String framework, boolean startServer) throws Exception { this.homeDir = homeDir; this.jvmName = jvmName; this.clPath = clPath; this.javaCmd = javaCmd; this.jvmflags = jvmflags; this....
1,102,748
public boolean exec(String outfile, File outDir, PrintWriter pwDiff, String testBaseOrig, String framework, String jvmName, int iminor, boolean useprocess, boolean usesysdiff, String canondir, String canonpath, String serverJvm) throws IOException, ClassNotFoundException { tes...
public boolean exec(String outfile, File outDir, PrintWriter pwDiff, String testBaseOrig, String framework, String jvmName, int iminor, boolean useprocess, boolean usesysdiff, String canondir, String canonpath, String serverJvm) throws IOException, ClassNotFoundException { tes...
1,102,753
public final PooledConnection getPooledConnection() throws SQLException { return new EmbedPooledConnection(this, getUser(), getPassword(), false); }
public final PooledConnection getPooledConnection() throws SQLException { return createPooledConnection (getUser(), getPassword(), false); }
1,102,756
public ResultSet getFunctions(java.lang.String catalog, java.lang.String schemaPattern, java.lang.String functionNamePattern) throws SQLException { return getSimpleQuery("getFunctions"); }
public ResultSet getFunctions(java.lang.String catalog, java.lang.String schemaPattern, java.lang.String functionNamePattern) throws SQLException { PreparedStatement s = getPreparedQuery("getFunctions"); s.setString(1, swapNull(catalog)); s...
1,102,757
protected ResultSet getSimpleQuery(String nameKey) throws SQLException { return getSimpleQuery(nameKey, false); }
protected ResultSet getSimpleQuery(String nameKey) throws SQLException { return getSimpleQuery(nameKey, false); }
1,102,758
protected PreparedStatement getPreparedQuery(String queryName) throws SQLException { return getPreparedQuery(queryName, false); }
protected PreparedStatement getPreparedQuery(String queryName) throws SQLException { return getPreparedQuery(queryName, false); }
1,102,759
public ResultSet getSchemas(String catalog, String schemaPattern) throws SQLException { PreparedStatement s = getPreparedQuery("getSchemasWithParams"); s.setString(1, swapNull(catalog)); s.setString(2, swapNull(schemaPattern)); return s.executeQuery(); }
public ResultSet getSchemas(String catalog, String schemaPattern) throws SQLException { PreparedStatement s = getPreparedQuery("getSchemasWithParams"); s.setString(1, swapNull(catalog)); s.setString(2, swapNull(schemaPattern)); return s.executeQuery(); }
1,102,760
void t_createBlob() { Blob blob; try { blob = conn.createBlob(); System.out.println("unimplemented exception not thrown in code"); } catch(SQLException e) { if(!message.equals(e.getMessage())) { System.out.println("Unexpected SQLException"+e); ...
void t_createBlob() { Blob blob; try { blob = conn.createBlob(); System.out.println("unimplemented exception not thrown in code"); } catch(SQLException e) { if(SQLState.NOT_IMPLEMENTED.equals (e.getSQLState())) { System.out.println("Unexpected SQL...
1,102,761
void t_createClob() { Clob clob; try { clob = conn.createClob(); System.out.println("unimplemented exception not thrown in code"); } catch(SQLException e) { if(!message.equals(e.getMessage())) { System.out.println("Unexpected SQLException"+e); ...
void t_createClob() { Clob clob; try { clob = conn.createClob(); System.out.println("unimplemented exception not thrown in code"); } catch(SQLException e) { if(SQLState.NOT_IMPLEMENTED.equals (e.getSQLState())) { System.out.println("Unexpected SQL...
1,102,762
void t_createNClob() { NClob nclob; try { nclob = conn.createNClob(); System.out.println("unimplemented exception not thrown in code"); } catch(SQLException e) { if(!message.equals(e.getMessage())) { System.out.println("Unexpected SQLException"+e)...
void t_createNClob() { NClob nclob; try { nclob = conn.createNClob(); System.out.println("unimplemented exception not thrown in code"); } catch(SQLException e) { if(SQLState.NOT_IMPLEMENTED.equals (e.getSQLState())) { System.out.println("Unexpecte...
1,102,763
void t_createSQLXML() { SQLXML sqlXML; try { sqlXML = conn.createSQLXML(); System.out.println("unimplemented exception not thrown in code"); } catch(SQLException e) { if(!message.equals(e.getMessage())) { System.out.println("Unexpected SQLExceptio...
void t_createSQLXML() { SQLXML sqlXML; try { sqlXML = conn.createSQLXML(); System.out.println("unimplemented exception not thrown in code"); } catch(SQLException e) { if(SQLState.NOT_IMPLEMENTED.equals (e.getSQLState())) { System.out.println("Unex...
1,102,764
void t_getClientInfo1(){ String info; try { info = conn.getClientInfo("prop1"); System.out.println("unimplemented exception not thrown in code"); } catch(SQLException e) { if(!message.equals(e.getMessage())) { System.out.println("Unexpected SQLExc...
void t_getClientInfo1(){ String info; try { info = conn.getClientInfo("prop1"); System.out.println("unimplemented exception not thrown in code"); } catch(SQLException e) { if(SQLState.NOT_IMPLEMENTED.equals (e.getSQLState())) { System.out.println(...
1,102,765
void t_getClientInfo2(){ Properties p=null; try { p = conn.getClientInfo(); System.out.println("unimplemented exception not thrown in code"); } catch(SQLException e) { if(!message.equals(e.getMessage())) { System.out.println("Unexpected SQLExcepti...
void t_getClientInfo2(){ Properties p=null; try { p = conn.getClientInfo(); System.out.println("unimplemented exception not thrown in code"); } catch(SQLException e) { if(SQLState.NOT_IMPLEMENTED.equals (e.getSQLState())) { System.out.println("Une...
1,102,766
void t_isValid() { boolean ret; try { ret = conn.isValid(0); System.out.println("unimplemented exception not thrown in code"); } catch(SQLException e) { if(!message.equals(e.getMessage())) { System.out.println("Unexpected SQLException"+e); ...
void t_isValid() { boolean ret; try { ret = conn.isValid(0); System.out.println("unimplemented exception not thrown in code"); } catch(SQLException e) { if(SQLState.NOT_IMPLEMENTED.equals (e.getSQLState())) { System.out.println("Unexpected SQLExce...
1,102,767
void t_setClientInfo1(){ try { conn.setClientInfo("prop1","value1"); System.out.println("unimplemented exception not thrown in code"); } catch(SQLException e) { if(!message.equals(e.getMessage())) { System.out.println("Unexpected SQLException"+e); ...
void t_setClientInfo1(){ try { conn.setClientInfo("prop1","value1"); System.out.println("unimplemented exception not thrown in code"); } catch(SQLException e) { if(SQLState.NOT_IMPLEMENTED.equals (e.getSQLState())) { System.out.println("Unexpected SQLExc...
1,102,768
void t_setClientInfo2(){ try { Properties p = new Properties(); conn.setClientInfo(p); System.out.println("unimplemented exception not thrown in code"); } catch(SQLException e) { if(!message.equals(e.getMessage())) { System.out.println("Unexpe...
void t_setClientInfo2(){ try { Properties p = new Properties(); conn.setClientInfo(p); System.out.println("unimplemented exception not thrown in code"); } catch(SQLException e) { if(SQLState.NOT_IMPLEMENTED.equals (e.getSQLState())) { System.o...
1,102,769
public NoPutResultSet getBulkTableScanResultSet( Activation activation, long conglomId, int scociItem, GeneratedMethod resultRowAllocator, int resultSetNumber, GeneratedMethod startKeyGetter, int startSearchOperator, GeneratedMethod s...
public NoPutResultSet getBulkTableScanResultSet( Activation activation, long conglomId, int scociItem, GeneratedMethod resultRowAllocator, int resultSetNumber, GeneratedMethod startKeyGetter, int startSearchOperator, GeneratedMethod s...
1,102,770
public NoPutResultSet getDistinctGroupedAggregateResultSet(NoPutResultSet source, boolean isInSortedOrder, int aggregateItem, int orderItem, GeneratedMethod rowAllocator, int maxRowSize, int resultSetNumber, double optimizerEstimatedRowCount, double optimizerEstimatedCost, GeneratedMethod closeCleanup) t...
public NoPutResultSet getDistinctGroupedAggregateResultSet(NoPutResultSet source, boolean isInSortedOrder, int aggregateItem, int orderItem, GeneratedMethod rowAllocator, int maxRowSize, int resultSetNumber, double optimizerEstimatedRowCount, double optimizerEstimatedCost, GeneratedMethod closeCleanup) t...
1,102,771
public NoPutResultSet getDistinctScalarAggregateResultSet(NoPutResultSet source, boolean isInSortedOrder, int aggregateItem, int orderItem, GeneratedMethod rowAllocator, int maxRowSize, int resultSetNumber, boolean singleInputRow, double optimizerEstimatedRowCount, double optimizerEstimatedCost, GeneratedM...
public NoPutResultSet getDistinctScalarAggregateResultSet(NoPutResultSet source, boolean isInSortedOrder, int aggregateItem, int orderItem, GeneratedMethod rowAllocator, int maxRowSize, int resultSetNumber, boolean singleInputRow, double optimizerEstimatedRowCount, double optimizerEstimatedCost, GeneratedM...
1,102,772
public NoPutResultSet getDistinctScanResultSet( Activation activation, long conglomId, int scociItem, GeneratedMethod resultRowAllocator, int resultSetNumber, int hashKeyColumn, String tableName, String userSuppliedOptimizerOverrides, ...
public NoPutResultSet getDistinctScanResultSet( Activation activation, long conglomId, int scociItem, GeneratedMethod resultRowAllocator, int resultSetNumber, int hashKeyColumn, String tableName, String userSuppliedOptimizerOverrides, ...
1,102,773
public NoPutResultSet getGroupedAggregateResultSet(NoPutResultSet source, boolean isInSortedOrder, int aggregateItem, int orderItem, GeneratedMethod rowAllocator, int maxRowSize, int resultSetNumber, double optimizerEstimatedRowCount, double optimizerEstimatedCost, GeneratedMethod closeCleanup) throws St...
public NoPutResultSet getGroupedAggregateResultSet(NoPutResultSet source, boolean isInSortedOrder, int aggregateItem, int orderItem, GeneratedMethod rowAllocator, int maxRowSize, int resultSetNumber, double optimizerEstimatedRowCount, double optimizerEstimatedCost, GeneratedMethod closeCleanup) throws St...
1,102,774
public NoPutResultSet getHashJoinResultSet(NoPutResultSet leftResultSet, int leftNumCols, NoPutResultSet rightResultSet, int rightNumCols, GeneratedMethod joinClause, int resultSetNumber, boolean oneRowRightSide, boolean notExistsRightSide, ...
public NoPutResultSet getHashJoinResultSet(NoPutResultSet leftResultSet, int leftNumCols, NoPutResultSet rightResultSet, int rightNumCols, GeneratedMethod joinClause, int resultSetNumber, boolean oneRowRightSide, boolean notExistsRightSide, ...
1,102,775
public NoPutResultSet getHashLeftOuterJoinResultSet(NoPutResultSet leftResultSet, int leftNumCols, NoPutResultSet rightResultSet, int rightNumCols, GeneratedMethod joinClause, int resultSetNumber, GeneratedMethod emptyRowFun, boolean wasRightOute...
public NoPutResultSet getHashLeftOuterJoinResultSet(NoPutResultSet leftResultSet, int leftNumCols, NoPutResultSet rightResultSet, int rightNumCols, GeneratedMethod joinClause, int resultSetNumber, GeneratedMethod emptyRowFun, boolean wasRightOute...
1,102,776
public NoPutResultSet getHashScanResultSet( Activation activation, long conglomId, int scociItem, GeneratedMethod resultRowAllocator, int resultSetNumber, GeneratedMethod startKeyGetter, int startSearchOperator, GeneratedMethod stopKeyGe...
public NoPutResultSet getHashScanResultSet( Activation activation, long conglomId, int scociItem, GeneratedMethod resultRowAllocator, int resultSetNumber, GeneratedMethod startKeyGetter, int startSearchOperator, GeneratedMethod stopKeyGe...
1,102,777
public NoPutResultSet getHashTableResultSet(NoPutResultSet source, GeneratedMethod singleTableRestriction, Qualifier[][] equijoinQualifiers, GeneratedMethod projection, int resultSetNumber, int mapRefItem, boolean reuseResult, int keyColItem, boolean removeDuplicates, long maxInMemoryRowCount, int initialCap...
public NoPutResultSet getHashTableResultSet(NoPutResultSet source, GeneratedMethod singleTableRestriction, Qualifier[][] equijoinQualifiers, GeneratedMethod projection, int resultSetNumber, int mapRefItem, boolean reuseResult, int keyColItem, boolean removeDuplicates, long maxInMemoryRowCount, int initialCap...
1,102,778
public NoPutResultSet getIndexRowToBaseRowResultSet( long conglomId, int scociItem, NoPutResultSet source, GeneratedMethod resultRowAllocator, int resultSetNumber, String indexName, int heapColRefItem, int indexColRefItem, int indexColMapItem, Gener...
public NoPutResultSet getIndexRowToBaseRowResultSet( long conglomId, int scociItem, NoPutResultSet source, GeneratedMethod resultRowAllocator, int resultSetNumber, String indexName, int heapColRefItem, int indexColRefItem, int indexColMapItem, Gener...
1,102,779
public NoPutResultSet getLastIndexKeyResultSet ( Activation activation, int resultSetNumber, GeneratedMethod resultRowAllocator, long conglomId, String tableName, String userSuppliedOptimizerOverrides, String indexName, int colRefItem, int lockMode, boolean tableLocked, in...
public NoPutResultSet getLastIndexKeyResultSet ( Activation activation, int resultSetNumber, GeneratedMethod resultRowAllocator, long conglomId, String tableName, String userSuppliedOptimizerOverrides, String indexName, int colRefItem, int lockMode, boolean tableLocked, in...
1,102,780
public NoPutResultSet getMaterializedResultSet(NoPutResultSet source, int resultSetNumber, double optimizerEstimatedRowCount, double optimizerEstimatedCost, GeneratedMethod closeCleanup) throws StandardException { return new MaterializedResultSet(source, source.getActivation(), ...
public NoPutResultSet getMaterializedResultSet(NoPutResultSet source, int resultSetNumber, double optimizerEstimatedRowCount, double optimizerEstimatedCost, GeneratedMethod closeCleanup) throws StandardException { return new MaterializedResultSet(source, source.getActivation(), ...
1,102,781
public NoPutResultSet getNestedLoopJoinResultSet(NoPutResultSet leftResultSet, int leftNumCols, NoPutResultSet rightResultSet, int rightNumCols, GeneratedMethod joinClause, int resultSetNumber, boolean oneRowRightSide, boolean notExistsRightSide,...
public NoPutResultSet getNestedLoopJoinResultSet(NoPutResultSet leftResultSet, int leftNumCols, NoPutResultSet rightResultSet, int rightNumCols, GeneratedMethod joinClause, int resultSetNumber, boolean oneRowRightSide, boolean notExistsRightSide,...
1,102,782
public NoPutResultSet getNestedLoopLeftOuterJoinResultSet(NoPutResultSet leftResultSet, int leftNumCols, NoPutResultSet rightResultSet, int rightNumCols, GeneratedMethod joinClause, int resultSetNumber, GeneratedMethod emptyRowFun, boolean wasRig...
public NoPutResultSet getNestedLoopLeftOuterJoinResultSet(NoPutResultSet leftResultSet, int leftNumCols, NoPutResultSet rightResultSet, int rightNumCols, GeneratedMethod joinClause, int resultSetNumber, GeneratedMethod emptyRowFun, boolean wasRig...
1,102,783
public NoPutResultSet getNormalizeResultSet(NoPutResultSet source, int resultSetNumber, int erdNumber, double optimizerEstimatedRowCount, double optimizerEstimatedCost, boolean forUpdate, GeneratedMethod closeCleanup) throws StandardException { return new NormalizeResultS...
public NoPutResultSet getNormalizeResultSet(NoPutResultSet source, int resultSetNumber, int erdNumber, double optimizerEstimatedRowCount, double optimizerEstimatedCost, boolean forUpdate, GeneratedMethod closeCleanup) throws StandardException { return new NormalizeResultS...
1,102,784