Dataset Viewer
Auto-converted to Parquet Duplicate
id
stringlengths
22
25
commit_message
stringlengths
137
6.96k
diffs
listlengths
0
63
derby-DERBY-1-d617193c
DERBY-2020 (partial) Move check for JVM bug (DERBY-1) into separate method. Patch contributed by Olav Sandstå. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@530807 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/store/raw/log/LogToFile.java", "hunks": [ { "added": [ " /**", " * Status for whether the check on the sync error on some JVMs has been", " * done or not. See the checkJvmSyncError method for details.", ...
derby-DERBY-1001-5e009439
(DERBY-1001): Removed two unused imports and renamed a local variable hiding an instance variable. Patch file: n/a git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@666583 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-1002-f0dcf0bb
DERBY-1002 - Check that DRDAStatement and DRDAResultSet states are reset when they are re-used Contributed by Deepa Remesh Please take a look at following two patches - patch 1 contains code changes and patch 2 contains tests. These have to be committed together. ------------------------------------------ 1. derby1...
[ { "file": "java/drda/org/apache/derby/impl/drda/DRDAResultSet.java", "hunks": [ { "added": [ "\t//NOTE!", "\t//", "\t// Since DRDAResultSets are reused, ALL variables should be set ", "\t// to their default values in reset()." ], "header"...
derby-DERBY-1004-494a3289
DERBY-1004: Client should not require user to rollback the active transaction before call to PooledConnection.getConnection() git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@412852 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/client/org/apache/derby/client/ClientPooledConnection.java", "hunks": [ { "added": [ " } " ], "header": "@@ -178,7 +178,7 @@ public class ClientPooledConnection implements javax.sql.PooledConnection {", "removed": [ ...
derby-DERBY-1005-fdfc981e
DERBY-966 DERBY-1005 1) Change DRDAStatement to use the EngineConnection.prepareStatement() method that has a holdability parameter. This ensures prepares on a connection that was obtained from a XADataSource (or a ConnectionPoolDataSource) do not lose the holdability requested by the application. 2) Change the client...
[ { "file": "java/client/org/apache/derby/client/am/Connection.java", "hunks": [ { "added": [ "import org.apache.derby.shared.common.reference.JDBC30Translation;" ], "header": "@@ -21,6 +21,7 @@", "removed": [] }, { "added": [ " ...
derby-DERBY-1006-4388f151
DERBY-1006 Disallow holdable cursor setting at the connection and statement level while in a global transaction for the client driver. Matches the embedded as the holdable cursors are not supported in global (XA) transactions. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@381549 13f79535-47bb-0310-...
[ { "file": "java/client/org/apache/derby/client/am/Connection.java", "hunks": [ { "added": [ " // In an XA global transaction do not allow the", " // holdability to be set to hold cursors across", " // commits, as the engine does no...
derby-DERBY-1007-ab10884c
DERBY-1007: Fix optimizer to make subqueries return correct cost estimates. More description of the changes: 1. Added the "prepForNextRound()" method that was part of OptimizerImpl to the Optimizer interface since that seemslike an appropriate place for it. 2. Added a single line to OptimizerImpl.prepForNextRound() t...
[ { "file": "java/engine/org/apache/derby/impl/sql/compile/IntersectOrExceptNode.java", "hunks": [ { "added": [ "\t\t// Get our final cost estimate based on the child estimates.", "\t\tcostEstimate = getFinalCostEstimate();", "" ], "header": "@@ -330...
derby-DERBY-1007-e540aee4
DERBY-1007: Follow up patch to earlier submitted patch. In a word, the fix for this issue ensures that, in the case of subqueries, the optimizer will correctly propagate the estimated costs for subqueries up to the parent subquery(-ies), thus allowing the parent query to make a better decision about which join order i...
[ { "file": "java/engine/org/apache/derby/iapi/store/access/BackingStoreHashtable.java", "hunks": [ { "added": [ " /* We want to create the hash table based on the estimated row", " * count if a) we have an estimated row count (i.e. it's greater", ...
derby-DERBY-1009-6d12993a
DERBY-434 DERBY-1009 DERBY-435 Remove static check methods with duplicated code in instance methods, have the Java procedure call the instance method for the connection checks on the nested connection. Have the checkDataSource30 procedure nested connection checks use checkDataSource30 as the object for the instanc...
[]
derby-DERBY-1009-e65be5ba
DERBY-1009 Ensure EmbedResultSet.getStatement() returns the BrokeredStatement object the application used to create it, rather than the underlying physical statament. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@379178 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/iapi/jdbc/BrokeredPreparedStatement.java", "hunks": [ { "added": [ "\tfinal String\tsql;" ], "header": "@@ -38,7 +38,7 @@ public class BrokeredPreparedStatement extends BrokeredStatement", "removed": [ "\tprote...
derby-DERBY-1010-fe35a93d
DERBY-1010 - setTransactionIsolation can cause ava.sql.SQLException: Invalid operation: statement closed in some contexts with xa Client has a Statement object that it reuses to send SET CURRENT ISOLATION commands to the server. Added a check to make sure this statement was not closed before trying to reuse it. This...
[]
derby-DERBY-1015-3734ddea
DERBY-1015 Use the EngineConnection class to call setDRDAId, set/getPrepareIsolation from the network server on an embedded connction. Removes the requirement for specialized methods in XADatasource. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@379609 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/drda/org/apache/derby/impl/drda/Database.java", "hunks": [ { "added": [], "header": "@@ -33,7 +33,6 @@ import java.util.Properties;", "removed": [ "import org.apache.derby.impl.jdbc.EmbedConnection;" ] }, { "added": [ ...
derby-DERBY-1015-4e3b1b6b
DERBY-1015 (partial) Add an interface for Statement objects from the engine, EngineStatement. Removes some use of reflection in brokered objects and the network server. Is also a step towards solving DERBY-1158, downgrading holdabilty in global transactions. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code...
[ { "file": "java/drda/org/apache/derby/impl/drda/DRDAStatement.java", "hunks": [ { "added": [ "import org.apache.derby.iapi.jdbc.EngineStatement;" ], "header": "@@ -38,6 +38,7 @@ import java.util.Vector;", "removed": [] }, { "added": [ ...
derby-DERBY-1015-aadfd426
DERBY-1015: Define interface between network server and engine through Java interfaces. Contributed by Sunitha Kambhampati. Passes derbynetclientmats. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@421435 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/drda/org/apache/derby/impl/drda/DRDAConnThread.java", "hunks": [ { "added": [ "import org.apache.derby.iapi.jdbc.EngineParameterMetaData;" ], "header": "@@ -56,7 +56,7 @@ import org.apache.derby.iapi.services.monitor.Monitor;", "removed": [ ...
derby-DERBY-1015-ab40defb
DERBY-1015: Added new interfaces git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@421460 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/iapi/jdbc/EnginePreparedStatement.java", "hunks": [ { "added": [ "/*", " ", " Derby - Class org.apache.derby.iapi.jdbc.EnginePreparedStatement", " ", " Copyright 2006 The Apache Software Foundation or its...
derby-DERBY-1015-af35756e
DERBY-1015 (partial) Minor cleanup in the methods to obtain a connection in the network server. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@379551 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/drda/org/apache/derby/impl/drda/Database.java", "hunks": [ { "added": [ "\tvoid setConnection(Connection conn)" ], "header": "@@ -112,7 +112,7 @@ class Database", "removed": [ "\tprotected void setConnection(Connection conn)" ...
derby-DERBY-1015-da847a29
DERBY-1015 (partial) Initial code for EngineConnection. Add the EngineConnection interface with a set of initial methods, make EmbedConnection and BrokeredConnection implement this interface. No uses of the interface added yet. Some of the initial methods were moved from BrokeredConnectionControl which looked like a st...
[ { "file": "java/engine/org/apache/derby/iapi/jdbc/BrokeredConnection.java", "hunks": [ { "added": [ "public class BrokeredConnection implements EngineConnection" ], "header": "@@ -43,7 +43,7 @@ import org.apache.derby.iapi.error.StandardException;", "removed":...
derby-DERBY-1015-faf21340
DERBY-1015 (partial) Modify the network server to hold the embedded Connection object as a EngineConnection reference instead of a vanilla Connection. Does not change the uses of the connection reference to take advantage of the consistent api, will be done in a future patch. git-svn-id: https://svn.apache.org/repos/...
[ { "file": "java/drda/org/apache/derby/impl/drda/Database.java", "hunks": [ { "added": [ "", "import org.apache.derby.iapi.jdbc.EngineConnection;" ], "header": "@@ -29,6 +29,8 @@ import java.sql.SQLException;", "removed": [] }, { "...
derby-DERBY-1016-418e135a
DERBY-1016; javax.transaction.xa.forget (Xid) raises XAER_NOTA exception instead of XA_PROTO on a prepared transaction patch contributed by Jayaram Subramanian (rsjay1976 at gmail dot com). git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1210686 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-1024-d5ba8a8b
DERBY-1024 Remove the XA constants in XAResource that were duplicates of standard constants from XAException and XAResource. Removed the code that translated (incorrectly) an XA return value from one constant to another (with the same value in most cases). Thus fixing 1024 where the incorrect XA code was being thrown, ...
[ { "file": "java/client/org/apache/derby/client/net/NetXAConnection.java", "hunks": [ { "added": [ "import javax.transaction.xa.XAException;", "import javax.transaction.xa.XAResource;" ], "header": "@@ -22,6 +22,8 @@ package org.apache.derby.client.net;", ...
derby-DERBY-1025-1a7cb26e
DERBY-1025 - [xa] client XAResource.start() does not commit an active local transaction when auto commit is true Contributed by Deepa Remesh ------------------------------------------------ Summary: ------------------------------------------------ * Modifies NetXAResource.start to check if the connection is in autoco...
[]
derby-DERBY-1025-bff53129
DERBY-1025 / DERBY-2620 test cases Make sure statement is created with holdability CLOSE_CURSORS_AT_COMMIT when testing if xa_start commits the transaction. Exempt embedded from running DERBY-1025 test because of 08003 - No current connection git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@535973 ...
[]
derby-DERBY-1025-c63d941b
DERBY-435 jdbcapi/checkDataSource.java and jdbapi/checkDataSource30.java to tests should be changed or extended to test client DataSources - Brings checkDataSource and checkDataSourc30 into derbynetclientmats - Reenables tests for DERBY-1044 now that it is fixed. Tests are excluded for some bugs uncovered by this te...
[]
derby-DERBY-1025-fa1185de
DERBY-435 continuing work to get checkDataSource running with client disabled test cases for DERBY-1025, DERBY-1044, and DERBY-1047 added workaround for DERBY-1036 to give statements different cursor names git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@380672 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-1030-7d3ddb17
DERBY-1030 (partial) Add some comments to the logic for the RETURNS ON NULL INPUT's state field. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@475803 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/sql/compile/SQLToJavaValueNode.java", "hunks": [ { "added": [ " /**", " * If set then this SQL value is being passed into a SQL function", " * declared RETURNS NULL ON NULL input. In this case this node", ...
derby-DERBY-1030-d2cb094d
DERBY-1030 (partial) Add test cases to RoutineTest that demonstrate this bug, where a function declared as RETURNS NULL ON NULL INPUT can be called when its argument is NULL. Look for the comment with this bug number. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@475490 13f79535-47bb-0310-9956-ffa45...
[]
derby-DERBY-1035-93abf18b
Disable tests for setting isolation with an SQL statement for client until DERBY-1035 is fixed git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@380020 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-1035-ac53be6a
DERBY-1148 Client XA getTransactionIsolation() does not return the correct isolation level when rejoining a global transaction Contributed by Deepa Remesh Summary of patch: * Changes getTransactionIsolation method in org.apache.derby.client.am.Connection class to get the isolation level from server. The built-in fun...
[ { "file": "java/client/org/apache/derby/client/am/Connection.java", "hunks": [ { "added": [ " ", " // used to get transaction isolation level", " private Statement getTransactionIsolationStmt = null;", " " ], "header": "@@ -80...
derby-DERBY-1035-c63d941b
DERBY-435 jdbcapi/checkDataSource.java and jdbapi/checkDataSource30.java to tests should be changed or extended to test client DataSources - Brings checkDataSource and checkDataSourc30 into derbynetclientmats - Reenables tests for DERBY-1044 now that it is fixed. Tests are excluded for some bugs uncovered by this te...
[]
derby-DERBY-1037-61634ec3
DERBY-1037: Fix lang/ShutdownDatabase.java in J2ME environment. Committed for Myrna Van Lunteren <m.v.lunteren@gmail.com> git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@386218 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-1039-b9ee498b
DERBY-1039, committed on behalf of Suresh Thalamati -- database create will fail with error if the user specified logDevice location already contains non-empty "log" dir at that location. -- added a new test that tests database creation with logDevice location with absolute paths and also the above expecte...
[ { "file": "java/engine/org/apache/derby/impl/store/raw/log/LogToFile.java", "hunks": [ { "added": [ "", "", " /**", " * Create the directory where transaction log should go.", " * @exception StandardException Standard Error Policy", ...
derby-DERBY-1040-67225cdc
DERBY-1040; Run store locking tests with network server and investigate locking behaviour Pushing LockTableVtiTest to run with both embedded and DerbyNetClient/Network Server git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1629764 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-1042-31083414
DERBY-1042: committed on behalf of Suresh Thalamati I could not reproduce this problem on my machine. By looking at the code I found backup is getting unblocked before the post commit work is done. This may cause the error that is reported, if the jar files to copied to the backup is deleted by the post commit. Attach...
[ { "file": "java/engine/org/apache/derby/impl/store/raw/xact/Xact.java", "hunks": [ { "added": [], "header": "@@ -1911,10 +1911,6 @@ public class Xact extends RawTransaction implements Limit {", "removed": [ "\t\t// any backup blocking operations (like unlogged ops) i...
derby-DERBY-1043-e2cf840c
DERBY-1043 Invalid column references are not caught in a trigger action statement when the referencing table of the column is the triggered table. Contributed by Fernanda Pizzorno. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@418933 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/sql/compile/UpdateNode.java", "hunks": [ { "added": [ "\t\t * the table name out from each RC. See comment on ", "\t\t * checkTableNameAndScrubResultColumns().", "\t\tcheckTableNameAndScrubResultColumns(resultColumnList...
derby-DERBY-1044-c63d941b
DERBY-435 jdbcapi/checkDataSource.java and jdbapi/checkDataSource30.java to tests should be changed or extended to test client DataSources - Brings checkDataSource and checkDataSourc30 into derbynetclientmats - Reenables tests for DERBY-1044 now that it is fixed. Tests are excluded for some bugs uncovered by this te...
[]
derby-DERBY-1044-fa1185de
DERBY-435 continuing work to get checkDataSource running with client disabled test cases for DERBY-1025, DERBY-1044, and DERBY-1047 added workaround for DERBY-1036 to give statements different cursor names git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@380672 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-1047-b01ccf59
DERBY-1196 Network server closes prepared statements prematurely if exception occurs during OPNQRY - Takes out close of prepared statement on exception in OPNQRY in DRDAConnThread processCommands - Updates the JCC master for derbnet/setTransactionIsolation. This test was getting Statement already closed errors fo...
[]
derby-DERBY-1047-c63d941b
DERBY-435 jdbcapi/checkDataSource.java and jdbapi/checkDataSource30.java to tests should be changed or extended to test client DataSources - Brings checkDataSource and checkDataSourc30 into derbynetclientmats - Reenables tests for DERBY-1044 now that it is fixed. Tests are excluded for some bugs uncovered by this te...
[]
derby-DERBY-1047-fa1185de
DERBY-435 continuing work to get checkDataSource running with client disabled test cases for DERBY-1025, DERBY-1044, and DERBY-1047 added workaround for DERBY-1036 to give statements different cursor names git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@380672 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-1052-4a95eeb4
DERBY-434 DERBY-1052: Fix XA tests in remote server testing. Committed for Myrna Van Lunteren <m.v.lunteren@gmail.com> git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@386221 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/testing/org/apache/derbyTesting/functionTests/util/TestUtil.java", "hunks": [ { "added": [ "\t\t// for remote server testing, check whether the hostName is set for the test", "\t\t// if so, and serverName is not yet set explicitly for the datasource, set it ...
derby-DERBY-1055-7a20f8d1
DERBY-1055 Security.AccessControlException in client under SecurityManager when trying to connect using EUSRIDPWD security mechanism Contributed by Sunitha Kambhampati Patch - removes the unnecessary addProvider call in EncryptionManager that was causing the Security.AccessControlException. - enables test to connect ...
[]
derby-DERBY-1060-8d6d99d4
DERBY-1060: ResultSet methods should throw exception when the ResultSet is closed The patch adds calls to checkIfClosed (embeddded) or checkForClosedResultSet (network client) in the ResultSet methods which don't check whether the ResultSet is closed. It also adds a test case to jdbc4/TestResultSetMethods.java. git-...
[ { "file": "java/client/org/apache/derby/client/am/ResultSet.java", "hunks": [ { "added": [ " /**", " * Returns the first <code>SQLWarning</code> reported on this", " * <code>ResultSet</code> object, or <code>null</code> if there", " * are ...
derby-DERBY-1062-3082e5d2
DERBY-1062: Escape special characters in table name and schema name before passing them on to ALTER TABLE git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@658604 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/catalog/SystemProcedures.java", "hunks": [ { "added": [ " String escapedSchema = escapeSQLIdentifier(schema);", " String escapedTableName = escapeSQLIdentifier(tablename);", " \"alter table \" + esca...
derby-DERBY-1062-7bf9b221
Cleaning for sqlgrammar.jj a little bit by removing the code to pass the parameters which never will be set during ALTER TABLE when we are doing a non-compress operation on the table. This is for DERBY-1062 git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@657154 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/sql/compile/AlterTableNode.java", "hunks": [ { "added": [], "header": "@@ -160,10 +160,6 @@ public class AlterTableNode extends DDLStatementNode", "removed": [ "\t * @param sequential\t\tWhether or not the COMPRESS is SEQUE...
derby-DERBY-1062-818fd271
This commit is for DERBY-1062. Currently SYSCS_INPLACE_COMPRESS_TABLE is implemented on it's own in OnlineCompress.java It will be nice for us to share the existing code for ALTER TABLE so we do all the necessary checks that are already done in ALTER TABLE rather than repeat the code in OnlineCompress. Another procedur...
[ { "file": "java/engine/org/apache/derby/impl/sql/compile/AlterTableNode.java", "hunks": [ { "added": [ "\t//The following three (purge, defragment and truncateEndOfTable) apply for ", "\t//inplace compress", "\tpublic\tboolean\t\t\t\tpurge = false;", "\t...
derby-DERBY-1062-8fb718fa
Taking care of javadoc warnings caused by a checkin made for DERBY-1062 git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@656323 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/sql/execute/AlterTableConstantAction.java", "hunks": [ { "added": [], "header": "@@ -588,9 +588,6 @@ class AlterTableConstantAction extends DDLSingleTableConstantAction", "removed": [ " * @param schemaName schema...
derby-DERBY-1062-ec55311e
DERBY-3674 Inplace compress test in store/TransactionTable.sql started failing after the checkin for DERBY-1062. Prior to the fix for DERBY-1062, an inplace compress request on VTI would return with no exception although the code just ignored the compress request on VTI. After DERBY-1062 fix, Derby started throwing ex...
[ { "file": "java/engine/org/apache/derby/catalog/SystemProcedures.java", "hunks": [ { "added": [ "import org.apache.derby.iapi.store.access.TransactionController;", "import org.apache.derby.iapi.sql.dictionary.DataDictionary;", "import org.apache.derby.iapi.sql.dic...
derby-DERBY-1063-50e065b7
DERBY-1063: Change server command in derbyrun.jar to server instead of NetworkServerControl. Touch up the javadoc. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@395434 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/tools/org/apache/derby/iapi/tools/run.java", "hunks": [ { "added": [ " <p>", " <p>", " java -jar derbyrun.jar ij [-p propertiesfile] [sql script]<br>", " java -jar derbyrun.jar sysinfo [-cp ...] [-cp help]<br>", " java -jar...
derby-DERBY-1063-83db8d61
DERBY-1063: Modify derbyrunjartest to call org.apache.derby.iapi.run directly if it is not in a jar file. Hook the test into the tools suite. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@395453 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-1063-8750f312
DERBY-1063: Add derbyrun.jar - new jar file to execute tools with java -jar git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@384101 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/tools/org/apache/derby/iapi/tools/run.java", "hunks": [ { "added": [ " Derby - Class org.apache.derby.iapi.tools.run" ], "header": "@@ -1,6 +1,6 @@", "removed": [ " Derby - Class org.apache.derby.tools.iapi.run" ] },...
derby-DERBY-1071-3374162d
DERBY-1071 submitting on behalf of Sunitha Kambhampati. Derby passes the user in a connection request as is; to the authenticateUser method. Thus if user attribute value is delimited with quotes, the userName in authenticateUser will also be delimited. Mentioned this explicitly in the javadoc. Javadoc change only. ...
[ { "file": "java/engine/org/apache/derby/authentication/UserAuthenticator.java", "hunks": [ { "added": [ " * <i>Note</i>: Additional connection attributes can be specified on the ", " * database connection URL and/or Properties object on jdbc connection. Values" ], ...
derby-DERBY-1071-a5f9148b
DERBY-1071 submitted on behalf of Sunitha Kambhampati javadoc fixes from the UserAuthenticator class. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@386463 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/authentication/UserAuthenticator.java", "hunks": [ { "added": [ " * <code>jdbc:derby:testdb;user=Fred;password=ScT7dmM2</code>", " * then the userName will be Fred and within the Derby user authorization ", " * s...
derby-DERBY-1079-54792bee
DERBY-1079: Commit bug1079_clientPublicAPI, adding javadoc for client classes in our public api. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@397650 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/client/org/apache/derby/jdbc/ClientDataSource.java", "hunks": [ { "added": [ " * ClientDataSource is a simple data source implementation", " * that can be used for establishing connections in a", " * non-pooling, non-distributed environment.", ...
derby-DERBY-1079-b33b410a
DERBY-1079: Expand public API javadoc for visible JDBC4 classes in the embedded client. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@394780 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/jdbc/EmbeddedXADataSource40.java", "hunks": [ { "added": [ "", "\tEmbeddedXADataSource40 is Derby's XADataSource implementation for JDBC4.0.", "\t", "", "\t<P>An XADataSource is a factory for XAConnection...
derby-DERBY-1080-25dfe8ce
DERBY-1080: Connection reset when using security mechanism=EUSRIDPWD results in protocol error Patch contributed by Sunitha Kambhampati For eusridpwd case, the client sends the encrypted userid and password sectkns as part of SECCHK. The protocol error was happening because we only read the 2 sectkns if the database....
[]
derby-DERBY-1087-f4fc366c
DERBY-1087 Updatable result sets behave different depending on the type of query used to generate the result set. Submitted by Fernanda Pizzorno git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@406683 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/sql/execute/IndexRowToBaseRowResultSet.java", "hunks": [ { "added": [], "header": "@@ -105,17 +105,6 @@ public class IndexRowToBaseRowResultSet extends NoPutResultSetImpl", "removed": [ "\t// for scrollable insensitive upda...
derby-DERBY-1091-3b16bbd7
DERBY-1091: Don't prepend a caret to jvmflags in RunSuite if the system properties are empty, but the suite property is not. Fixes several tests for J2ME (j9_foundation). Committed for Myrna Van Lunteren <m.v.lunteren@gmail.com> git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@427190 13f79535-47bb-03...
[ { "file": "java/testing/org/apache/derbyTesting/functionTests/harness/RunSuite.java", "hunks": [ { "added": [ "\t\tif (jvmflags != null)", "\t\t\tif (jflags != null)", "\t\t \t\tsuiteProperties.put(\"jvmflags\", (jvmflags + \"^\" + jflags));", "\t\t\t...
derby-DERBY-1091-c92a9b38
DERBY-1091: Test harness does not pass jvm flags properly if there are more than 1 property in jvm flags Committed for Myrna Van Lunteren <m.v.lunteren@gmail.com> git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@420048 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/testing/org/apache/derbyTesting/functionTests/harness/RunSuite.java", "hunks": [ { "added": [], "header": "@@ -93,7 +93,6 @@ public class RunSuite", "removed": [ "\t\t\t\t//jvmflags = \"-Xiss16k -Xss512k -Xmso16k -Xmx392388k\";" ] }, ...
derby-DERBY-1095-0c13195e
DERBY-1095 (partial) Clean up close methods on EmbedResultSet, mark the ResultSet as closed (isClosed=true) once it discovers its Connection is closed. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@385570 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/jdbc/EmbedResultSet.java", "hunks": [ { "added": [ " ", " /**", " * Set if this ResultSet is definitely closed.", " * If the connection has been closed, or the database", " * or sy...
derby-DERBY-1095-5781f54d
DERBY-1095 (partial): Closing an embedded connection does not seem to close associated EmbedStatements This patch makes EmbedResultSet.isClosed() return the correct result when the connection is closed. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@388093 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-1095-5a50776e
DERBY-1095 (partial) Ensure StatementContexts and CompilerContexts are popped from context manager on a session close. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@385569 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/sql/compile/CompilerContextImpl.java", "hunks": [ { "added": [ " ", " int severity = se.getSeverity();", "\t\t\tif (severity < ExceptionSeverity.SYSTEM_SEVERITY) " ], "header": "@@ ...
derby-DERBY-1095-7a8d0231
DERBY-1095 (partial) Once a ContextManager is empty no longer maintain a reference to it in the thread local variable. Avoids a thread hanging onto memory for ever. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@388626 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/iapi/services/context/ContextService.java", "hunks": [ { "added": [ "\t\t\tif (--cm.activeCount == 0) {", " ", " // If the ContextManager is empty", " // then don't keep...
derby-DERBY-1095-8a059c40
DERBY-1095 Cleanup ContextManagers created during database boot. Add some comments and synchronization to ContextService. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@387264 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/iapi/services/context/ContextService.java", "hunks": [ { "added": [ " /**", " * Collection of all ContextManagers that are open", " * in the complete Derby system. A ContextManager is", " * added whe...
derby-DERBY-1095-913815a1
DERBY-1095 (partial) Ensure on a close connection/session contexts are popped off the context manager. This ensures that references to database wide objects are not maintained after a close connection. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@384900 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/iapi/services/loader/ClassFactoryContext.java", "hunks": [ { "added": [ "import org.apache.derby.iapi.error.ExceptionSeverity;", "", " * Context that provides the correct ClassFactory for the", " * current service....
derby-DERBY-1095-b7df3e85
DERBY-1095 (partial) Ensure DataDictionaryContexts are popped off the stack when the connection/session is closed. Cleanup unused code of nested DataDictionaryContexts. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@385106 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/sql/catalog/DataDictionaryContextImpl.java", "hunks": [ { "added": [], "header": "@@ -42,11 +42,6 @@ class DataDictionaryContextImpl", "removed": [ "\t//", "\t// True means this is a nested data dictionary. We pop...
derby-DERBY-1101-c7d6c758
DERBY-1101 Modify EmbedResultSet.getHoldability() so that it uses getActivation() instead of getStatement(). Contributed by Knut Anders Hatlen knut.hatlen@sun.com git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@391846 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/jdbc/EmbedResultSet.java", "hunks": [ { "added": [ "import org.apache.derby.iapi.reference.JDBC30Translation;" ], "header": "@@ -48,6 +48,7 @@ import org.apache.derby.iapi.services.io.NewByteArrayInputStream;", "rem...
derby-DERBY-1101-d99b5c9f
DERBY-1101 (partial): ResultSet.getHoldability will return incorrect value when the ResultSet is obtained from a procedure call Adding a regression test for this issue. The test does not fail, since the bug won't be exposed until DERBY-1111 is fixed. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@3...
[]
derby-DERBY-1102-128eeb6e
DERBY-1102 More progress in converting triggerGeneral to Junit, testing of ordering of triggers with constraints. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@523935 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-1102-13e0e08a
DERBY-1102 (partial) Add more tests cases for all data types (including streaming values) in action statements. Add tests for trigger ordering. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@509421 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-1102-648b4c12
DERBY-1102 (partial) Remove unused code in Triggers.java git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@385383 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/testing/org/apache/derbyTesting/functionTests/util/Triggers.java", "hunks": [ { "added": [], "header": "@@ -117,14 +117,6 @@ public class Triggers", "removed": [ "\t// used for performance numbers", "\tpublic static void zipThroughTriggerResu...
derby-DERBY-1102-8aa8c9b0
DERBY-1102 (partial) Add an initial TriggerTest. Only fixture is to ensure that all datatypes work in an action statement. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@508442 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-1102-962234bf
DERBY-1102 (partial) Remove application code that printed the trigger information using non-public apis. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@385377 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/testing/org/apache/derbyTesting/functionTests/util/Triggers.java", "hunks": [ { "added": [], "header": "@@ -40,7 +40,6 @@ public class Triggers", "removed": [ "\t\tTriggerExecutionContext tec = Factory.getTriggerExecutionContext();" ] }, ...
derby-DERBY-1102-9a55713e
DERBY-1102 (partial) Remove test case of use of stale TriggerExecutionContext in triggerGeneral.sql because applications no longer have access to the TriggerExecutionContext. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@385389 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/testing/org/apache/derbyTesting/functionTests/util/Triggers.java", "hunks": [ { "added": [ "\tprivate Triggers()" ], "header": "@@ -30,11 +30,7 @@ import java.math.BigInteger;", "removed": [ "", "\t// used for threading test...
derby-DERBY-1102-a7f52a6e
DERBY-1102 Add missing classes for TriggerTest and latest version of test with reference to DERBY-2350. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@508639 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/testing/org/apache/derbyTesting/functionTests/util/streams/StringReaderWithLength.java", "hunks": [ { "added": [ "package org.apache.derbyTesting.functionTests.util.streams;", "", "import java.io.StringReader;", "", "public clas...
derby-DERBY-1102-dda212db
DERBY-1102 (partial) Remove triggerStream test, test of data types in action statement is now in TriggerTest and covers more situations using the correct apis. Found two or three bugs with the new test. Remove old utility code that used the old TriggerExecutionContext api. git-svn-id: https://svn.apache.org/repos/asf/...
[ { "file": "java/testing/org/apache/derbyTesting/functionTests/util/StreamUtil.java", "hunks": [ { "added": [], "header": "@@ -1,198 +0,0 @@", "removed": [ "/*", "", " Derby - Class org.apache.derbyTesting.functionTests.util.StreamUtil", ...
derby-DERBY-1102-f6f8e109
DERBY-1102 (partial) Remove old unused replication related methods in test code Triggers.java git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@385379 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/testing/org/apache/derbyTesting/functionTests/util/Triggers.java", "hunks": [ { "added": [], "header": "@@ -52,27 +52,6 @@ public class Triggers", "removed": [ "\tpublic static void triggerFiresRep(String string) throws Throwable", "\t{\t", ...
derby-DERBY-1107-3f523e62
DERBY-1107 For existing databases JDBC metadata queries do not get updated properly between maintenance versions. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@712695 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/sql/catalog/DD_Version.java", "hunks": [ { "added": [ "\t\tbootingDictionary.updateMetadataSPSes(tc);" ], "header": "@@ -340,8 +340,7 @@ public\tclass DD_Version implements\tFormatable", "removed": [ "\t\t...
derby-DERBY-1108-4ba425d2
DERBY-1108 (partial) More datatypes testing in TriggersTest git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@508593 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-1111-d99b5c9f
DERBY-1101 (partial): ResultSet.getHoldability will return incorrect value when the ResultSet is obtained from a procedure call Adding a regression test for this issue. The test does not fail, since the bug won't be exposed until DERBY-1111 is fixed. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@3...
[]
End of preview. Expand in Data Studio
README.md exists but content is empty.
Downloads last month
8