bugged stringlengths 6 599k | fixed stringlengths 10 599k | __index_level_0__ int64 0 1.13M |
|---|---|---|
synchronized public void setTypeMap(java.util.Map map) throws SQLException { try { if (agent_.loggingEnabled()) { agent_.logWriter_.traceEntry(this, "setTypeMap", map); } checkForClosedConnection(); throw new SqlException(agent_.logWriter_, "C... | synchronized public void setTypeMap(java.util.Map map) throws SQLException { try { if (agent_.loggingEnabled()) { agent_.logWriter_.traceEntry(this, "setTypeMap", map); } checkForClosedConnection(); throw new SqlException(agent_.logWriter_, ne... | 1,103,840 |
public ResultColumnList getAllResultColumns(String allTableName) throws StandardException { return getResultColumnsForList(allTableName, resultColumns, tableName); } | public ResultColumnList getAllResultColumns(TableName allTableName) throws StandardException { return getResultColumnsForList(allTableName, resultColumns, tableName); } | 1,103,841 |
protected ResultSetNode getSourceResultSet(int [] colNum) throws StandardException { if (source == null) { /* this can happen if column reference is pointing to a column * that is not from a base table. For example, if we have a * VALUES clause like * * (values (1, 2), (3, 4)) V1 (i, j) * * ... | protected ResultSetNode getSourceResultSet(int [] colNum) throws StandardException { if (source == null) { /* this can happen if column reference is pointing to a column * that is not from a base table. For example, if we have a * VALUES clause like * * (values (1, 2), (3, 4)) V1 (i, j) * * ... | 1,103,842 |
protected ResultSetNode getSourceResultSet(int [] colNum) throws StandardException { if (source == null) { /* this can happen if column reference is pointing to a column * that is not from a base table. For example, if we have a * VALUES clause like * * (values (1, 2), (3, 4)) V1 (i, j) * * ... | protected ResultSetNode getSourceResultSet(int [] colNum) throws StandardException { if (source == null) { /* this can happen if column reference is pointing to a column * that is not from a base table. For example, if we have a * VALUES clause like * * (values (1, 2), (3, 4)) V1 (i, j) * * ... | 1,103,843 |
public static Test suite() { TestSuite connSuite = new TestSuite(ConnectionTest.class, "ConnectionTest suite"); // Add client only tests // NOTE: JCC is excluded if (usingDerbyNetClient()) { connSuite.addTest( clientSuite("ConnectionTest client-o... | public static Test suite() { TestSuite connSuite = new TestSuite(ConnectionTest.class, "ConnectionTest suite"); // Add client only tests // NOTE: JCC is excluded if (usingDerbyNetClient()) { connSuite.addTest( clientSuite("ConnectionTest client-o... | 1,103,844 |
protected Tag createBeanTag(String name, Attributes attributes) throws JellyException { // is the name bound to a specific class Class beanType = getBeanType(name, attributes); if (beanType != null) { return new BeanTag(beanType, name); } // its a property tag ... | protected Tag createBeanTag(String name, Attributes attributes) throws JellyException { // is the name bound to a specific class Class beanType = getBeanType(name, attributes); if (beanType != null) { Method invokeMethod = (Method) invokeMethods.get(name); return new BeanTag(beanType... | 1,103,845 |
public BeanTag(Class defaultClass, String tagName) { super(defaultClass); this.tagName = tagName; if (tagName.length() > 0) { addMethodName = "add" + tagName.substring(0,1).toUpperCase() + tagName.substring(1); } } | public BeanTag(Class defaultClass, String tagName) { super(defaultClass); this.tagName = tagName; if (tagName.length() > 0) { addMethodName = "add" + tagName.substring(0,1).toUpperCase() + tagName.substring(1); } } | 1,103,846 |
void validate(DDLStatementNode ddlStmt, DataDictionary dd, TableDescriptor td) throws StandardException { this.td = td; int numAutoCols = 0; int size = size(); Hashtable columnHT = new Hashtable(size + 2, (float) .999); Hashtable constraintHT = new Hashtable(size + 2, (float) .999); //all t... | void validate(DDLStatementNode ddlStmt, DataDictionary dd, TableDescriptor td) throws StandardException { this.td = td; int numAutoCols = 0; int size = size(); Hashtable columnHT = new Hashtable(size + 2, (float) .999); Hashtable constraintHT = new Hashtable(size + 2, (float) .999); //all t... | 1,103,848 |
public void testSetBlob() throws SQLException { // Keeping the above in mind // STEP1: create the tables // Structure of table // -------------------------- // SNO Blob Column // -------------------------- Statement s = conn.createStatemen... | public void testSetBlob() throws SQLException { // Keeping the above in mind // STEP1: create the tables // Structure of table // -------------------------- // SNO Blob Column // -------------------------- Statement s = conn.createStatemen... | 1,103,852 |
public void testSetBlob() throws SQLException { // Keeping the above in mind // STEP1: create the tables // Structure of table // -------------------------- // SNO Blob Column // -------------------------- Statement s = conn.createStatemen... | public void testSetBlob() throws SQLException { // Keeping the above in mind // STEP1: create the tables // Structure of table // -------------------------- // SNO Blob Column // -------------------------- Statement s = conn.createStatemen... | 1,103,853 |
public void testSetClob() throws SQLException { // Keeping the above in mind // STEP1: create the tables // Structure of table // -------------------------- // SNO Clob Column // -------------------------- Statement s = conn.createStatemen... | public void testSetClob() throws SQLException { // Keeping the above in mind // STEP1: create the tables // Structure of table // -------------------------- // SNO Clob Column // -------------------------- Statement s = conn.createStatemen... | 1,103,854 |
public void testSetClob() throws SQLException { // Keeping the above in mind // STEP1: create the tables // Structure of table // -------------------------- // SNO Clob Column // -------------------------- Statement s = conn.createStatemen... | public void testSetClob() throws SQLException { // Keeping the above in mind // STEP1: create the tables // Structure of table // -------------------------- // SNO Clob Column // -------------------------- Statement s = conn.createStatemen... | 1,103,855 |
public PartitionDatabaseMeta(String partitionId, String hostname, String port, String database) { super(); this.partitionId = partitionId; this.hostname = hostname; this.port = port; this.databaseName = database; } | public PartitionDatabaseMeta() { super(); this.partitionId = partitionId; this.hostname = hostname; this.port = port; this.databaseName = database; } | 1,103,856 |
public PartitionDatabaseMeta(String partitionId, String hostname, String port, String database) { super(); this.partitionId = partitionId; this.hostname = hostname; this.port = port; this.databaseName = database; } | public PartitionDatabaseMeta(String partitionId, String hostname, String port, String database) { super(); this.partitionId = partitionId; this.hostname = hostname; this.port = port; this.databaseName = database; } | 1,103,857 |
protected void bootResourceAdapter(boolean create, Properties startParams) { // Boot resource adapter - only if we are running Java 2 or // beyondwith JDBC20 extension, JTA and JNDI classes in the classpath // // assume if it doesn't boot it was because the required // classes were missing, and continue without i... | protected void bootResourceAdapter(boolean create, Properties startParams) { // Boot resource adapter - only if we are running Java 2 or // beyondwith JDBC20 extension, JTA and JNDI classes in the classpath // // assume if it doesn't boot it was because the required // classes were missing, and continue without i... | 1,103,858 |
public static String mkQualifiedName(String[] ids) { StringBuffer sb = new StringBuffer(); for (int ix=0; ix < ids.length; ix++) { if (ix!=0) sb.append("."); sb.append(delimitId(ids[ix])); } return sb.toString(); } | public static String mkQualifiedName(String id1, String id2) { StringBuffer sb = new StringBuffer(); for (int ix=0; ix < ids.length; ix++) { if (ix!=0) sb.append("."); sb.append(delimitId(ids[ix])); } return sb.toString(); } | 1,103,859 |
public static String mkQualifiedName(String[] ids) { StringBuffer sb = new StringBuffer(); for (int ix=0; ix < ids.length; ix++) { if (ix!=0) sb.append("."); sb.append(delimitId(ids[ix])); } return sb.toString(); } | public static String mkQualifiedName(String[] ids) { StringBuffer sb = new StringBuffer(); for (int ix=0; ix < ids.length; ix++) { if (ix!=0) sb.append("."); sb.append(delimitId(ids[ix])); } return sb.toString(); } | 1,103,860 |
private ByteArrayInputStream reEncode(Reader reader) throws IOException { int count; if(( count = reader.read(decodedBuffer_, 0, BUFFERED_CHAR_LEN )) < 1 ){ return null; } encodedOutputStream_.reset(); encodedStreamWriter_.write(decodedBuffer_,0,count); encodedStreamWriter_.flush(); int encodedLength = en... | private ByteArrayInputStream reEncode(Reader reader) throws IOException { int count; if(( count = reader.read(decodedBuffer_, 0, BUFFERED_CHAR_LEN )) < 1 ){ return null; } encodedOutputStream_.reset(); encodedStreamWriter_.write(decodedBuffer_,0,count); encodedStreamWriter_.flush(); int encodedLength = en... | 1,103,861 |
public static final String getAliasType(char nameSpace) { switch (nameSpace) { case AliasInfo.ALIAS_TYPE_PROCEDURE_AS_CHAR: return "PROCEDURE"; case AliasInfo.ALIAS_TYPE_FUNCTION_AS_CHAR: return "FUNCTION"; case AliasInfo.ALIAS_TYPE_SYNONYM_AS_CHAR: return "SYNONYM"; } return null; } | public char getAliasType() { switch (nameSpace) { case AliasInfo.ALIAS_TYPE_PROCEDURE_AS_CHAR: return "PROCEDURE"; case AliasInfo.ALIAS_TYPE_FUNCTION_AS_CHAR: return "FUNCTION"; case AliasInfo.ALIAS_TYPE_SYNONYM_AS_CHAR: return "SYNONYM"; } return null; } | 1,103,862 |
public static final String getAliasType(char nameSpace) { switch (nameSpace) { case AliasInfo.ALIAS_TYPE_PROCEDURE_AS_CHAR: return "PROCEDURE"; case AliasInfo.ALIAS_TYPE_FUNCTION_AS_CHAR: return "FUNCTION"; case AliasInfo.ALIAS_TYPE_SYNONYM_AS_CHAR: return "SYNONYM"; } return null; } | public static final String getAliasType(char nameSpace) { switch (nameSpace) { case AliasInfo.ALIAS_TYPE_PROCEDURE_AS_CHAR: return "PROCEDURE"; case AliasInfo.ALIAS_TYPE_FUNCTION_AS_CHAR: return "FUNCTION"; case AliasInfo.ALIAS_TYPE_SYNONYM_AS_CHAR: return "SYNONYM"; } return null; } | 1,103,863 |
public int getColumnDisplaySize(int column) throws SQLException { try { checkForClosedStatement(); checkForValidColumnIndex(column); int jdbcType = types_[column - 1]; switch (jdbcType) { case Types.BOOLEAN: return 5; cas... | public int getColumnDisplaySize(int column) throws SQLException { try { checkForClosedStatement(); checkForValidColumnIndex(column); int jdbcType = types_[column - 1]; switch (jdbcType) { case Types.BOOLEAN: return 5; cas... | 1,103,864 |
public void addRemovePermissionsDescriptor( boolean add, PermissionsDescriptor perm, String grantee, TransactionController tc) throws StandardException { // It is p... | public boolean addRemovePermissionsDescriptor( boolean add, PermissionsDescriptor perm, String grantee, TransactionController tc) throws StandardException { // It i... | 1,103,865 |
public void addRemovePermissionsDescriptor( boolean add, PermissionsDescriptor perm, String grantee, TransactionController tc) throws StandardException { // It is p... | public void addRemovePermissionsDescriptor( boolean add, PermissionsDescriptor perm, String grantee, TransactionController tc) throws StandardException { // It is p... | 1,103,867 |
public void addRemovePermissionsDescriptor( boolean add, PermissionsDescriptor perm, String grantee, TransactionController tc) throws StandardException { // It is p... | public void addRemovePermissionsDescriptor( boolean add, PermissionsDescriptor perm, String grantee, TransactionController tc) throws StandardException { // It is p... | 1,103,868 |
public void addRemovePermissionsDescriptor( boolean add, PermissionsDescriptor perm, String grantee, TransactionController tc) throws StandardException { // It is p... | public void addRemovePermissionsDescriptor( boolean add, PermissionsDescriptor perm, String grantee, TransactionController tc) throws StandardException { // It is p... | 1,103,869 |
public void addRemovePermissionsDescriptor( boolean add, PermissionsDescriptor perm, String grantee, TransactionController tc) throws StandardException { // It is p... | public void addRemovePermissionsDescriptor( boolean add, PermissionsDescriptor perm, String grantee, TransactionController tc) throws StandardException { // It is p... | 1,103,870 |
public void addRemovePermissionsDescriptor( boolean add, PermissionsDescriptor perm, String grantee, TransactionController tc) throws StandardException { // It is p... | public void addRemovePermissionsDescriptor( boolean add, PermissionsDescriptor perm, String grantee, TransactionController tc) throws StandardException { // It is p... | 1,103,871 |
public double getDouble() throws StandardException { if (isNull()) return 0.0; return Double.parseDouble(getString()); // TODO - correct implementation } | public double getDouble() throws StandardException { if (isNull()) return 0.0; return NumberDataType.normalizeDOUBLE(Double.parseDouble(getString())); // TODO - correct implementation } | 1,103,872 |
public float getFloat() throws StandardException { if (isNull()) return 0.0f; return Float.parseFloat(getString()); // TODO - correct implementation } | public float getFloat() throws StandardException { if (isNull()) return 0.0f; return NumberDataType.normalizeREAL(Float.parseFloat(getString())); // TODO - correct implementation } | 1,103,873 |
public static void SYSCS_BULK_INSERT( String schemaName, String tableName, String vtiName, String vtiArg ) throws SQLException { Connection conn = getDefaultConn(); String entityName = (schemaName == null ? tableName : schemaName + "." + tableName); String binsertSql = "insert into " + ent... | public static void SYSCS_BULK_INSERT( String schemaName, String tableName, String vtiName, String vtiArg ) throws SQLException { Connection conn = getDefaultConn(); String entityName = (schemaName == null ? tableName : schemaName + "." + tableName); String binsertSql = "insert into " + ent... | 1,103,874 |
public NormalizeResultSet(NoPutResultSet source, Activation activation, int resultSetNumber, int erdNumber, double optimizerEstimatedRowCount, double optimizerEstimatedCost, boolean forUpdate, GeneratedMethod c) throws StandardException { super(activation, resultSet... | public NormalizeResultSet(NoPutResultSet source, Activation activation, int resultSetNumber, int erdNumber, double optimizerEstimatedRowCount, double optimizerEstimatedCost, boolean forUpdate, GeneratedMethod c) throws StandardException { super(activation, resultSet... | 1,103,876 |
public NormalizeResultSet(NoPutResultSet source, Activation activation, int resultSetNumber, int erdNumber, double optimizerEstimatedRowCount, double optimizerEstimatedCost, boolean forUpdate, GeneratedMethod c) throws StandardException { super(activation, resultSet... | public NormalizeResultSet(NoPutResultSet source, Activation activation, int resultSetNumber, int erdNumber, double optimizerEstimatedRowCount, double optimizerEstimatedCost, boolean forUpdate, GeneratedMethod c) throws StandardException { super(activation, resultSet... | 1,103,877 |
public void close() throws StandardException { beginTime = getCurrentTimeMillis(); if ( isOpen ) { if (closeCleanup != null) { closeCleanup.invoke(activation); // let activation tidy up } currentRow = null; source.close(); super.close(); } else if (SanityManager.DEBUG) SanityManag... | public void close() throws StandardException { beginTime = getCurrentTimeMillis(); if ( isOpen ) { if (closeCleanup != null) { closeCleanup.invoke(activation); // let activation tidy up } currentRow = null; source.close(); super.close(); } else if (SanityManager.DEBUG) SanityManag... | 1,103,878 |
public int addConstant(int value) { return addDirectEntry(new CONSTANT_Integer_info(value)); } | public int addConstant(int value) { return addDirectEntry(new CONSTANT_Integer_info(value)); } | 1,103,879 |
void startTestResultSetMethods(Connection conn_in,PreparedStatement ps_in,ResultSet rs_in) { conn = conn_in; ps = ps_in; rs = rs_in; t_getRowId1(); t_getRowId2(); t_updateRowId1(); t_updateRowId2(); t_getHoldability(); t_isClosed... | void startTestResultSetMethods(Connection conn_in,PreparedStatement ps_in,ResultSet rs_in) { conn = conn_in; ps = ps_in; rs = rs_in; t_getRowId1(); t_getRowId2(); t_updateRowId1(); t_updateRowId2(); t_getHoldability(); t_isClosed... | 1,103,880 |
public IndexRowToBaseRowResultSet( long conglomId, int scociItem, Activation a, NoPutResultSet source, GeneratedMethod resultRowAllocator, int resultSetNumber, String indexName, int heapColRefItem, int indexColRefItem, int indexColMapItem, GeneratedMethod restriction, ... | IndexRowToBaseRowResultSet( long conglomId, int scociItem, Activation a, NoPutResultSet source, GeneratedMethod resultRowAllocator, int resultSetNumber, String indexName, int heapColRefItem, int indexColRefItem, int indexColMapItem, GeneratedMethod restriction, boolea... | 1,103,881 |
public IndexRowToBaseRowResultSet( long conglomId, int scociItem, Activation a, NoPutResultSet source, GeneratedMethod resultRowAllocator, int resultSetNumber, String indexName, int heapColRefItem, int indexColRefItem, int indexColMapItem, GeneratedMethod restriction, ... | public IndexRowToBaseRowResultSet( long conglomId, int scociItem, Activation a, NoPutResultSet source, GeneratedMethod resultRowAllocator, int resultSetNumber, String indexName, int heapColRefItem, int indexColRefItem, int indexColMapItem, GeneratedMethod restriction, ... | 1,103,882 |
public IndexRowToBaseRowResultSet( long conglomId, int scociItem, Activation a, NoPutResultSet source, GeneratedMethod resultRowAllocator, int resultSetNumber, String indexName, int heapColRefItem, int indexColRefItem, int indexColMapItem, GeneratedMethod restriction, ... | public IndexRowToBaseRowResultSet( long conglomId, int scociItem, Activation a, NoPutResultSet source, GeneratedMethod resultRowAllocator, int resultSetNumber, String indexName, int heapColRefItem, int indexColRefItem, int indexColMapItem, GeneratedMethod restriction, ... | 1,103,883 |
public void close() throws StandardException { beginTime = getCurrentTimeMillis(); if ( isOpen ) { // we don't want to keep around a pointer to the // row ... so it can be thrown away. // REVISIT: does this need to be in a finally // block, to ensure that it is executed? clearCurrentRow(); if (clos... | public void close() throws StandardException { beginTime = getCurrentTimeMillis(); if ( isOpen ) { // we don't want to keep around a pointer to the // row ... so it can be thrown away. // REVISIT: does this need to be in a finally // block, to ensure that it is executed? clearCurrentRow(); if (clos... | 1,103,884 |
public ExecRow getCurrentRow() throws StandardException { ExecRow sourceRow = null; if (SanityManager.DEBUG) { SanityManager.ASSERT(isOpen, "IndexRowToBaseRowResultSet is expected to be open"); } if (currentRowPrescanned) return currentRow; /* Nothing to do if we're not currently on a row */ if (curre... | public ExecRow getCurrentRow() throws StandardException { ExecRow sourceRow = null; if (SanityManager.DEBUG) { SanityManager.ASSERT(isOpen, "IndexRowToBaseRowResultSet is expected to be open"); } if (currentRowPrescanned) return currentRow; /* Nothing to do if we're not currently on a row */ if (curre... | 1,103,885 |
public ExecRow getNextRowCore() throws StandardException { ExecRow sourceRow = null; ExecRow retval = null; boolean restrict = false; DataValueDescriptor restrictBoolean; long beginRT = 0; beginTime = getCurrentTimeMillis(); if ( ! isOpen ) { throw StandardException.newException(SQLState.LANG_RESU... | public ExecRow getNextRowCore() throws StandardException { ExecRow sourceRow = null; ExecRow retval = null; boolean restrict = false; DataValueDescriptor restrictBoolean; long beginRT = 0; beginTime = getCurrentTimeMillis(); if ( ! isOpen ) { throw StandardException.newException(SQLState.LANG_RESU... | 1,103,886 |
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,103,887 |
private static boolean haveClass(String className) { try { Class.forName(className); return true; } catch (Exception e) { return false; } } | protected static boolean haveClass(String className) { try { Class.forName(className); return true; } catch (Exception e) { return false; } } | 1,103,889 |
public ExecRow getNextRowCore() throws StandardException { checkCancellationFlag(); if (currentRow == null) { currentRow = getCompactRow(candidate, accessedCols, (FormatableBitSet) null, isKeyed); } beginTime = getCurrentTimeMillis(); ExecRow result = null; /* beetle 3865, updateable curs... | public ExecRow getNextRowCore() throws StandardException { checkCancellationFlag(); if (currentRow == null || scanRepositioned) { currentRow = getCompactRow(candidate, accessedCols, (FormatableBitSet) null, isKeyed); } beginTime = getCurrentTimeMillis(); ExecRow result = null; /* beetle 3... | 1,103,892 |
public void init( Object leftResult, Object rightResult, Object onClause, Object usingClause, Object rightOuterJoin, Object tableProperties) throws StandardException { super.init( leftResult, rightResult, onClause, usingClause, null, tableProperties); this.right... | public void init( Object leftResult, Object rightResult, Object onClause, Object usingClause, Object rightOuterJoin, Object tableProperties) throws StandardException { super.init( leftResult, rightResult, onClause, usingClause, null, tableProperties, null); this... | 1,103,894 |
public void addParms(Vector parameterList) throws StandardException { methodParms = new JavaValueNode[parameterList.size()]; int plSize = parameterList.size(); for (int index = 0; index < plSize; index++) { QueryTreeNode qt; qt = (QueryTreeNode) parameterList.elementAt(index); /* ** If the parameter is a S... | public void addParms(JavaValueNode[] methodParms) { methodParms = new JavaValueNode[parameterList.size()]; int plSize = parameterList.size(); for (int index = 0; index < plSize; index++) { QueryTreeNode qt; qt = (QueryTreeNode) parameterList.elementAt(index); /* ** If the parameter is a SQL ValueNode, ther... | 1,103,896 |
public void addParms(Vector parameterList) throws StandardException { methodParms = new JavaValueNode[parameterList.size()]; int plSize = parameterList.size(); for (int index = 0; index < plSize; index++) { QueryTreeNode qt; qt = (QueryTreeNode) parameterList.elementAt(index); /* ** If the parameter is a S... | public void addParms(Vector parameterList) throws StandardException { methodParms = new JavaValueNode[parameterList.size()]; int plSize = parameterList.size(); for (int index = 0; index < plSize; index++) { QueryTreeNode qt; qt = (QueryTreeNode) parameterList.elementAt(index); /* ** If the parameter is a S... | 1,103,897 |
private void generateDistinctScan ( ExpressionClassBuilder acb, MethodBuilder mb ) throws StandardException { ConglomerateDescriptor cd = getTrulyTheBestAccessPath().getConglomerateDescriptor(); CostEstimate costEstimate = getFinalCostEstimate(); int colRefItem = (referencedCols == null) ? -1 : acb.addI... | private void generateDistinctScan ( ExpressionClassBuilder acb, MethodBuilder mb ) throws StandardException { ConglomerateDescriptor cd = getTrulyTheBestAccessPath().getConglomerateDescriptor(); CostEstimate costEstimate = getFinalCostEstimate(); int colRefItem = (referencedCols == null) ? -1 : acb.addI... | 1,103,899 |
private void generateDistinctScan ( ExpressionClassBuilder acb, MethodBuilder mb ) throws StandardException { ConglomerateDescriptor cd = getTrulyTheBestAccessPath().getConglomerateDescriptor(); CostEstimate costEstimate = getFinalCostEstimate(); int colRefItem = (referencedCols == null) ? -1 : acb.addI... | private void generateDistinctScan ( ExpressionClassBuilder acb, MethodBuilder mb ) throws StandardException { ConglomerateDescriptor cd = getTrulyTheBestAccessPath().getConglomerateDescriptor(); CostEstimate costEstimate = getFinalCostEstimate(); int colRefItem = (referencedCols == null) ? -1 : acb.addI... | 1,103,900 |
private void generateMaxSpecialResultSet ( ExpressionClassBuilder acb, MethodBuilder mb ) throws StandardException { ConglomerateDescriptor cd = getTrulyTheBestAccessPath().getConglomerateDescriptor(); CostEstimate costEstimate = getFinalCostEstimate(); int colRefItem = (referencedCols == null) ? -1 :... | private void generateMaxSpecialResultSet ( ExpressionClassBuilder acb, MethodBuilder mb ) throws StandardException { ConglomerateDescriptor cd = getTrulyTheBestAccessPath().getConglomerateDescriptor(); CostEstimate costEstimate = getFinalCostEstimate(); int colRefItem = (referencedCols == null) ? -1 :... | 1,103,901 |
private void generateMaxSpecialResultSet ( ExpressionClassBuilder acb, MethodBuilder mb ) throws StandardException { ConglomerateDescriptor cd = getTrulyTheBestAccessPath().getConglomerateDescriptor(); CostEstimate costEstimate = getFinalCostEstimate(); int colRefItem = (referencedCols == null) ? -1 :... | private void generateMaxSpecialResultSet ( ExpressionClassBuilder acb, MethodBuilder mb ) throws StandardException { ConglomerateDescriptor cd = getTrulyTheBestAccessPath().getConglomerateDescriptor(); CostEstimate costEstimate = getFinalCostEstimate(); int colRefItem = (referencedCols == null) ? -1 :... | 1,103,902 |
private int getScanArguments(ExpressionClassBuilder acb, MethodBuilder mb) throws StandardException { // get a function to allocate scan rows of the right shape and size MethodBuilder resultRowAllocator = resultColumns.generateHolderMethod(acb, referencedCols, (Fo... | private int getScanArguments(ExpressionClassBuilder acb, MethodBuilder mb) throws StandardException { // get a function to allocate scan rows of the right shape and size MethodBuilder resultRowAllocator = resultColumns.generateHolderMethod(acb, referencedCols, (Fo... | 1,103,903 |
public FormatableIntHolder(int theInt) { this.theInt = theInt; } | public FormatableIntHolder() { this.theInt = theInt; } | 1,103,904 |
public FormatableIntHolder(int theInt) { this.theInt = theInt; } | public FormatableIntHolder(int theInt) { } | 1,103,905 |
public FormatableLongHolder(long theLong) { this.theLong = theLong; } | public FormatableLongHolder() { this.theLong = theLong; } | 1,103,906 |
public FormatableLongHolder(long theLong) { this.theLong = theLong; } | public FormatableLongHolder(long theLong) { } | 1,103,907 |
protected void normalize(DataTypeDescriptor desiredType, String sourceValue) throws StandardException { int desiredWidth = desiredType.getMaximumWidth(); int sourceWidth = sourceValue.length(); /* ** If the input is already the right length, no normalization is ** necessary. ** ** It's OK for a Varchar value... | protected void normalize(DataTypeDescriptor desiredType, String sourceValue) throws StandardException { int desiredWidth = desiredType.getMaximumWidth(); int sourceWidth = sourceValue.length(); /* ** If the input is already the right length, no normalization is ** necessary. ** ** It's OK for a Varchar value... | 1,103,908 |
protected void normalize(DataTypeDescriptor desiredType, String sourceValue) throws StandardException { int desiredWidth = desiredType.getMaximumWidth(); int sourceWidth = sourceValue.length(); /* ** If the input is already the right length, no normalization is ** necessary. ** ** It's OK for a Varchar value... | protected void normalize(DataTypeDescriptor desiredType, String sourceValue) throws StandardException { int desiredWidth = desiredType.getMaximumWidth(); int sourceWidth = sourceValue.length(); /* ** If the input is already the right length, no normalization is ** necessary. ** ** It's OK for a Varchar value... | 1,103,909 |
public String createServiceRoot(final String name, final boolean deleteExisting) throws StandardException { if( !( rootStorageFactory instanceof WritableStorageFactory)) throw StandardException.newException(SQLState.READ_ONLY_SERVICE); // we need to create the directory before we can call // ge... | public String createServiceRoot(final String name, final boolean deleteExisting) throws StandardException { if( !( rootStorageFactory instanceof WritableStorageFactory)) throw StandardException.newException(SQLState.READ_ONLY_SERVICE); // we need to create the directory before we can call // ge... | 1,103,910 |
public String createServiceRoot(final String name, final boolean deleteExisting) throws StandardException { if( !( rootStorageFactory instanceof WritableStorageFactory)) throw StandardException.newException(SQLState.READ_ONLY_SERVICE); // we need to create the directory before we can call // ge... | public String createServiceRoot(final String name, final boolean deleteExisting) throws StandardException { if( !( rootStorageFactory instanceof WritableStorageFactory)) throw StandardException.newException(SQLState.READ_ONLY_SERVICE); // we need to create the directory before we can call // ge... | 1,103,911 |
public Object run() throws StandardException, IOException, InstantiationException, IllegalAccessException { StorageFactory storageFactory = privGetStorageFactoryInstance( true, name, null, null); try ... | public Object run() throws StandardException, IOException, InstantiationException, IllegalAccessException { StorageFactory storageFactory = privGetStorageFactoryInstance( true, name, null, null); try ... | 1,103,912 |
public static void main(String[] args) throws Exception { System.out.println("Test AggregateClassLoading starting"); // use the ij utility to read the property file and // make the initial connection. ij.getPropertyArg(args); Connection conn = ij.startJBMS(); // Find the location of the code for the Derby c... | public static void main(String[] args) throws Exception { System.out.println("Test AggregateClassLoading starting"); // use the ij utility to read the property file and // make the initial connection. ij.getPropertyArg(args); Connection conn = ij.startJBMS(); // Find the location of the code for the Derby c... | 1,103,913 |
private int getJoinArguments(ActivationClassBuilder acb, MethodBuilder mb, ValueNode joinClause) throws StandardException { int numArgs = getNumJoinArguments(); leftResultSet.generate(acb, mb); // arg 1 mb.push(leftResultSet.resultColumns.size()); // arg 2 rightResultSet.generate(acb, mb)... | private int getJoinArguments(ActivationClassBuilder acb, MethodBuilder mb, ValueNode joinClause) throws StandardException { int numArgs = getNumJoinArguments(); leftResultSet.generate(acb, mb); // arg 1 mb.push(leftResultSet.resultColumns.size()); // arg 2 rightResultSet.generate(acb, mb)... | 1,103,915 |
public IndexRow(int ncols) { super(ncols); orderedNulls = new boolean[ncols]; /* Initializes elements to false */ } | public IndexRow(int ncols) { super(ncols); orderedNulls = new boolean[ncols]; /* Initializes elements to false */ } | 1,103,916 |
NumberDataValue getDecimalDataValue(String value) throws StandardException; | NumberDataValue getDecimalDataValue(Number value) throws StandardException; | 1,103,917 |
public static int computeMaxWidth( int precision, int scale) { return (scale == 0) ? (precision + 1) : (precision + 3); } | public static int computeMaxWidth( int precision, int scale) { return (scale ==0) ? (precision +1) : ((scale == precision) ? (precision + 3) : (precision + 2)); } | 1,103,918 |
public void backup(String backupDir) throws StandardException { rawstore.backup(backupDir); } | public void backup( String backupDir, boolean wait) throws StandardException { rawstore.backup(backupDir); } | 1,103,919 |
public void backup(String backupDir) throws StandardException { rawstore.backup(backupDir); } | public void backup(String backupDir) throws StandardException { rawstore.backup(backupDir, wait); } | 1,103,920 |
public void backupAndEnableLogArchiveMode(String backupDir, boolean deleteOnlineArchivedLogFiles) throws StandardException { rawstore.backupAndEnableLogArchiveMode(backupDir, deleteOnlineArchivedLogFiles); } | public void backupAndEnableLogArchiveMode(String backupDir, boolean deleteOnlineArchivedLogFiles) throws StandardException { rawstore.backupAndEnableLogArchiveMode(backupDir, deleteOnlineArchivedLogFiles); } | 1,103,921 |
public void backupAndEnableLogArchiveMode(String backupDir, boolean deleteOnlineArchivedLogFiles) throws StandardException { rawstore.backupAndEnableLogArchiveMode(backupDir, deleteOnlineArchivedLogFiles); } | public void backupAndEnableLogArchiveMode(String backupDir, boolean deleteOnlineArchivedLogFiles) throws StandardException { rawstore.backupAndEnableLogArchiveMode(backupDir, deleteOnlineArchivedLogFiles, wait); } | 1,103,922 |
protected void writeScalarStream (boolean chainedWithSameCorrelator, int codePoint, EXTDTAInputStream in, boolean writeNullByte) throws DRDAProtocolException { // Stream equivalent of "beginDss"... int spareDssLength = prepScalarStream( chainedWithSameCorrelator, codeP... | protected void writeScalarStream (boolean chainedWithSameCorrelator, int codePoint, EXTDTAInputStream in, boolean writeNullByte) throws DRDAProtocolException { // Stream equivalent of "beginDss"... int spareDssLength = prepScalarStream( chainedWithSameCorrelator, codeP... | 1,103,923 |
protected void writeScalarStream (boolean chainedWithSameCorrelator, int codePoint, EXTDTAInputStream in, boolean writeNullByte) throws DRDAProtocolException { // Stream equivalent of "beginDss"... int spareDssLength = prepScalarStream( chainedWithSameCorrelator, codeP... | protected void writeScalarStream (boolean chainedWithSameCorrelator, int codePoint, EXTDTAInputStream in, boolean writeNullByte) throws DRDAProtocolException { // Stream equivalent of "beginDss"... int spareDssLength = prepScalarStream( chainedWithSameCorrelator, codeP... | 1,103,925 |
protected void writeScalarStream (boolean chainedWithSameCorrelator, int codePoint, EXTDTAInputStream in, boolean writeNullByte) throws DRDAProtocolException { // Stream equivalent of "beginDss"... int spareDssLength = prepScalarStream( chainedWithSameCorrelator, codeP... | protected void writeScalarStream (boolean chainedWithSameCorrelator, int codePoint, EXTDTAInputStream in, boolean writeNullByte) throws DRDAProtocolException { // Stream equivalent of "beginDss"... int spareDssLength = prepScalarStream( chainedWithSameCorrelator, codeP... | 1,103,926 |
private void writeSQLCAGRP(SQLException e, int sqlcode, int updateCount, long rowCount) throws DRDAProtocolException { String sqlerrmc; String sqlState; String severeExceptionInfo = null; SQLException nextException = null; if (rowCount < 0 && updateCount < 0) { writer.writeByte(CodePoint.NULLDATA); return;... | private void writeSQLCAGRP(SQLException e, int sqlcode, int updateCount, long rowCount) throws DRDAProtocolException { String sqlerrmc; String sqlState; SQLException nextException = null; if (rowCount < 0 && updateCount < 0) { writer.writeByte(CodePoint.NULLDATA); return; } if (e == null) { sqlerrmc ... | 1,103,927 |
private void writeSQLCAGRP(SQLException e, int sqlcode, int updateCount, long rowCount) throws DRDAProtocolException { String sqlerrmc; String sqlState; String severeExceptionInfo = null; SQLException nextException = null; if (rowCount < 0 && updateCount < 0) { writer.writeByte(CodePoint.NULLDATA); return;... | private void writeSQLCAGRP(SQLException e, int sqlcode, int updateCount, long rowCount) throws DRDAProtocolException { String sqlerrmc; String sqlState; String severeExceptionInfo = null; SQLException nextException = null; if (rowCount < 0 && updateCount < 0) { writer.writeByte(CodePoint.NULLDATA); return;... | 1,103,928 |
private void writeSQLCAGRP(SQLException e, int sqlcode, int updateCount, long rowCount) throws DRDAProtocolException { String sqlerrmc; String sqlState; String severeExceptionInfo = null; SQLException nextException = null; if (rowCount < 0 && updateCount < 0) { writer.writeByte(CodePoint.NULLDATA); return;... | private void writeSQLCAGRP(SQLException e, int sqlcode, int updateCount, long rowCount) throws DRDAProtocolException { String sqlerrmc; String sqlState; String severeExceptionInfo = null; SQLException nextException = null; if (rowCount < 0 && updateCount < 0) { writer.writeByte(CodePoint.NULLDATA); return;... | 1,103,929 |
public void remapColumnReferences() { ValueNode expression = source.getExpression(); if (SanityManager.DEBUG) { // SanityManager.ASSERT(origSource == null, // "Trying to remap ColumnReference twice without unremapping it."); } if ( ! ( (expression instanceof VirtualColumnNode) || (expression instanceof ... | public void remapColumnReferences() { ValueNode expression = source.getExpression(); if (SanityManager.DEBUG) { // SanityManager.ASSERT(origSource == null, // "Trying to remap ColumnReference twice without unremapping it."); } if ( ! ( (expression instanceof VirtualColumnNode) || (expression instanceof ... | 1,103,932 |
public void remapColumnReferences() { ValueNode expression = source.getExpression(); if (SanityManager.DEBUG) { // SanityManager.ASSERT(origSource == null, // "Trying to remap ColumnReference twice without unremapping it."); } if ( ! ( (expression instanceof VirtualColumnNode) || (expression instanceof ... | public void remapColumnReferences() { ValueNode expression = source.getExpression(); if (SanityManager.DEBUG) { // SanityManager.ASSERT(origSource == null, // "Trying to remap ColumnReference twice without unremapping it."); } if ( ! ( (expression instanceof VirtualColumnNode) || (expression instanceof ... | 1,103,933 |
public void remapColumnReferences() { ValueNode expression = source.getExpression(); if (SanityManager.DEBUG) { // SanityManager.ASSERT(origSource == null, // "Trying to remap ColumnReference twice without unremapping it."); } if ( ! ( (expression instanceof VirtualColumnNode) || (expression instanceof ... | public void remapColumnReferences() { ValueNode expression = source.getExpression(); if (SanityManager.DEBUG) { // SanityManager.ASSERT(origSource == null, // "Trying to remap ColumnReference twice without unremapping it."); } if ( ! ( (expression instanceof VirtualColumnNode) || (expression instanceof ... | 1,103,934 |
public void remapColumnReferences() { ValueNode expression = source.getExpression(); if (SanityManager.DEBUG) { // SanityManager.ASSERT(origSource == null, // "Trying to remap ColumnReference twice without unremapping it."); } if ( ! ( (expression instanceof VirtualColumnNode) || (expression instanceof ... | public void remapColumnReferences() { ValueNode expression = source.getExpression(); if (SanityManager.DEBUG) { // SanityManager.ASSERT(origSource == null, // "Trying to remap ColumnReference twice without unremapping it."); } if ( ! ( (expression instanceof VirtualColumnNode) || (expression instanceof ... | 1,103,935 |
public void unRemapColumnReferences() { if (origSource == null) return; if (SanityManager.DEBUG) { // SanityManager.ASSERT(origSource != null, // "Trying to unremap a ColumnReference that was not remapped."); } source = origSource; origSource = null; columnName = origName; origName = null; tableNumber ... | public void unRemapColumnReferences() { if (origSource == null) return; if (SanityManager.DEBUG) { // SanityManager.ASSERT(origSource != null, // "Trying to unremap a ColumnReference that was not remapped."); } source = origSource; origSource = null; columnName = origName; origName = null; tableNumber ... | 1,103,936 |
public static Test suite() { TestSuite suite = new TestSuite(); // need DriverManager at least and Derby drivers // no interest in testing DB2's client. if (JDBC.vmSupportsJDBC2() && (usingEmbedded() || usingDerbyNetClient())) { boolean autoloa... | public static Test suite() { TestSuite suite = new TestSuite(); // need DriverManager at least and Derby drivers // no interest in testing DB2's client. if (JDBC.vmSupportsJDBC2() && (usingEmbedded() || usingDerbyNetClient())) { boolean autoloa... | 1,103,937 |
Connection getConnection() { return conn; } | final EngineConnection getConnection() { return conn; } | 1,103,938 |
void makeConnection(Properties p) throws SQLException { p.put(Attribute.USERNAME_ATTR, userId); // take care of case of SECMEC_USRIDONL if(password != null) p.put(Attribute.PASSWORD_ATTR, password); Connection conn = NetworkServerControlImpl.getDriver().conne... | void makeConnection(Properties p) throws SQLException { p.put(Attribute.USERNAME_ATTR, userId); // take care of case of SECMEC_USRIDONL if(password != null) p.put(Attribute.PASSWORD_ATTR, password); EngineConnection conn = (EngineConnection) NetworkServerCont... | 1,103,939 |
void setConnection(Connection conn) throws SQLException { this.conn = conn; if(conn != null) defaultStatement.setStatement(conn); } | final void setConnection(EngineConnection conn) throws SQLException { this.conn = conn; if(conn != null) defaultStatement.setStatement(conn); } | 1,103,940 |
public Row getStepFields(StepMeta stepMeta) throws KettleStepException { return getStepFields(stepMeta, null); } | public Row getStepFields(String stepname) throws KettleStepException { return getStepFields(stepMeta, null); } | 1,103,943 |
public Row getStepFields(StepMeta stepMeta) throws KettleStepException { return getStepFields(stepMeta, null); } | public Row getStepFields(StepMeta stepMeta) throws KettleStepException { StepMeta stepMeta = findStep(stepname); if (stepMeta != null) return getStepFields(stepMeta); else return null; } | 1,103,944 |
public final void setBinaryStream(int parameterIndex, InputStream x, int length) throws SQLException { int jdbcTypeId = getParameterJDBCType(parameterIndex); switch (jdbcTypeId) { case Types.BINARY: case Types.VARBINARY: case Types.LONGVARBINARY: case Types.BLOB: break; default: throw dataTypeConver... | public final void setBinaryStream(int parameterIndex, InputStream x, int length) throws SQLException { int jdbcTypeId = getParameterJDBCType(parameterIndex); switch (jdbcTypeId) { case Types.BINARY: case Types.VARBINARY: case Types.LONGVARBINARY: case Types.BLOB: break; default: throw dataTypeConver... | 1,103,945 |
protected void setBinaryStreamInternal(int parameterIndex, InputStream x, int length) throws SQLException { checkStatus(); int jdbcTypeId = getParameterJDBCType(parameterIndex); if (x == null) { setNull(parameterIndex, jdbcTypeId); return; } try { getParms().getParameterForSet(parameterIn... | protected void setBinaryStreamInternal(int parameterIndex, InputStream x, long length) throws SQLException { checkStatus(); int jdbcTypeId = getParameterJDBCType(parameterIndex); if (x == null) { setNull(parameterIndex, jdbcTypeId); return; } try { getParms().getParameterForSet(parameterI... | 1,103,946 |
protected void setBinaryStreamInternal(int parameterIndex, InputStream x, int length) throws SQLException { checkStatus(); int jdbcTypeId = getParameterJDBCType(parameterIndex); if (x == null) { setNull(parameterIndex, jdbcTypeId); return; } try { getParms().getParameterForSet(parameterIn... | protected void setBinaryStreamInternal(int parameterIndex, InputStream x, int length) throws SQLException { checkStatus(); int jdbcTypeId = getParameterJDBCType(parameterIndex); if (x == null) { setNull(parameterIndex, jdbcTypeId); return; } try { getParms().getParameterForSet(parameterIn... | 1,103,947 |
public void setBlob (int i, Blob x) throws SQLException { int colType; synchronized (getConnectionSynchronization()) { colType = getParameterJDBCType(i); } // DB2: only allow setBlob on a BLOB column. if (colType != Types.BLOB) throw dataTypeConversion(i... | public void setBlob (int i, Blob x) throws SQLException { int colType; synchronized (getConnectionSynchronization()) { colType = getParameterJDBCType(i); } // DB2: only allow setBlob on a BLOB column. if (colType != Types.BLOB) throw dataTypeConversion(i... | 1,103,948 |
public static void main(String[] args) throws Exception { isDB2jNet = TestUtil.isNetFramework(); System.out.println("Test parameterMapping starting"); System.out.println("STILL TO RESOLVE -- Cloudscape getBoolean() allow conversion on strings to match JCC"); System.out.println("STILL TO RESOLVE -- Cloudscape getXX... | public static void main(String[] args) throws Exception { isDB2jNet = TestUtil.isNetFramework(); System.out.println("Test parameterMapping starting"); System.out.println("STILL TO RESOLVE -- Cloudscape getBoolean() allow conversion on strings to match JCC"); System.out.println("STILL TO RESOLVE -- Cloudscape getXX... | 1,103,950 |
public static void main(String[] args) throws Exception { isDB2jNet = TestUtil.isNetFramework(); System.out.println("Test parameterMapping starting"); System.out.println("STILL TO RESOLVE -- Cloudscape getBoolean() allow conversion on strings to match JCC"); System.out.println("STILL TO RESOLVE -- Cloudscape getXX... | public static void main(String[] args) throws Exception { isDB2jNet = TestUtil.isNetFramework(); System.out.println("Test parameterMapping starting"); System.out.println("STILL TO RESOLVE -- Cloudscape getBoolean() allow conversion on strings to match JCC"); System.out.println("STILL TO RESOLVE -- Cloudscape getXX... | 1,103,951 |
public static void test (String args[]) throws Exception { if ((System.getProperty("java.vm.name") != null) && System.getProperty("java.vm.name").equals("J9")) jvm = jvm.getJvm("j9_13"); else jvm = jvm.getJvm("currentjvm"); // ensure compatibility vCmd = jvm.getCommandLine(); try { Connection conn1 ... | public static void test (String args[]) throws Exception { if ((System.getProperty("java.vm.name") != null) && System.getProperty("java.vm.name").equals("J9")) jvm = jvm.getJvm("j9_13"); else jvm = jvm.getJvm("currentjvm"); // ensure compatibility vCmd = jvm.getCommandLine(); try { Connection conn1 ... | 1,103,953 |
public static void test (String args[]) throws Exception { if ((System.getProperty("java.vm.name") != null) && System.getProperty("java.vm.name").equals("J9")) jvm = jvm.getJvm("j9_13"); else jvm = jvm.getJvm("currentjvm"); // ensure compatibility vCmd = jvm.getCommandLine(); try { Connection conn1 ... | public static void test (String args[]) throws Exception { if ((System.getProperty("java.vm.name") != null) && System.getProperty("java.vm.name").equals("J9")) jvm = jvm.getJvm("j9_13"); else jvm = jvm.getJvm("currentjvm"); // ensure compatibility vCmd = jvm.getCommandLine(); try { Connection conn1 ... | 1,103,954 |
public int hashCode() { if (isNull()) return 0; try { return (int) Double.doubleToLongBits(getDouble()); } catch (StandardException se) { return 0; } } | public int hashCode() { if (isNull()) return 0; try { return (int) getLong(); } catch (StandardException se) { return 0; } } | 1,103,956 |
private void checkWarning(Connection conn, Statement stmt, ResultSet rs, boolean reuseCorrID, int updateCount, boolean alwaysSend, boolean sendWarn) throws DRDAProtocolException, SQLException { // instead of writing a chain of sql warning, we send the first one, this is // jcc/db2 limitation, see beetle 4629... | private void checkWarning(Connection conn, Statement stmt, ResultSet rs, int updateCount, boolean alwaysSend, boolean sendWarn) throws DRDAProtocolException, SQLException { // instead of writing a chain of sql warning, we send the first one, this is // jcc/db2 limitation, see beetle 4629 SQLWarning warning ... | 1,103,957 |
private void checkWarning(Connection conn, Statement stmt, ResultSet rs, boolean reuseCorrID, int updateCount, boolean alwaysSend, boolean sendWarn) throws DRDAProtocolException, SQLException { // instead of writing a chain of sql warning, we send the first one, this is // jcc/db2 limitation, see beetle 4629... | private void checkWarning(Connection conn, Statement stmt, ResultSet rs, boolean reuseCorrID, int updateCount, boolean alwaysSend, boolean sendWarn) throws DRDAProtocolException, SQLException { // instead of writing a chain of sql warning, we send the first one, this is // jcc/db2 limitation, see beetle 4629... | 1,103,958 |
private void errorInChain(SQLException e) throws DRDAProtocolException { if (reader.terminateChainOnErr() && (getExceptionSeverity(e) > CodePoint.SVRCOD_ERROR)) { if (SanityManager.DEBUG) trace("terminating the chain on error..."); while(reader.isChainedWithSameID() || reader.isChainedWithDiffID()) { corre... | private void errorInChain(SQLException e) throws DRDAProtocolException { if (reader.terminateChainOnErr() && (getExceptionSeverity(e) > CodePoint.SVRCOD_ERROR)) { if (SanityManager.DEBUG) trace("terminating the chain on error..."); while(reader.isChainedWithSameID() || reader.isChainedWithDiffID()) { corre... | 1,103,959 |
private boolean exchangeServerAttributes() throws DRDAProtocolException, SQLException { int codePoint; boolean sessionOK = true; correlationID = reader.readDssHeader(); if (SanityManager.DEBUG) { if (correlationID == 0) { SanityManager.THROWASSERT( "Unexpected value for correlationId = " + c... | private boolean exchangeServerAttributes() throws DRDAProtocolException, SQLException { int codePoint; boolean sessionOK = true; correlationID = reader.readDssHeader(); if (SanityManager.DEBUG) { if (correlationID == 0) { SanityManager.THROWASSERT( "Unexpected value for correlationId = " + c... | 1,103,960 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.