id
stringlengths
22
25
commit_message
stringlengths
137
6.96k
diffs
listlengths
0
63
derby-DERBY-532-e03c0745
DERBY-532 Support deferrable constraints Patch derby-532-fix-drop-not-nullable. Fixes a broken predicate when recreating the index when going from UNIQUE NOT NULL to plain UNIQUE: the existing predicate missed the deferrable case, so the index was not recreated. Added a test case. git-svn-id: https://svn.apache.or...
[]
derby-DERBY-532-e28a36f3
DERBY-532 Support deferrable constraints Patch derby-532-metadata-queries: updates the metadata queries to give correct results in the DEFERRABILITY column returned by the calls: - DataBaseMetaData#getImportedKeys - DataBaseMetaData#getExportedKeys - DataBaseMetaData#getCrossReference. Test have been added. git-svn...
[]
derby-DERBY-532-ea36b420
DERBY-6419 Make BTree scan honor OPENMODE_LOCK_NOWAIT for row locks A follow-up patch: derby-6419-followup. Only short circuit waiting for lock in BTree scan to check duplicates for a deferred unique/pk constraint if constraint mode is deferred (i.e. not if immediate). Added a test case lifted from UniqueConstraintM...
[ { "file": "java/engine/org/apache/derby/impl/sql/execute/IndexChanger.java", "hunks": [ { "added": [ "", " // If the constraint mode is deferred, perform the check without", " // waiting for any locks; we will just presume any lock conflicts"...
derby-DERBY-532-ee5954e2
DERBY-532 Support deferrable constraints Patch _*derby-532-upgrade-1b*_. It checks that deferrable constraints cannot be used unless hard upgrade has happened. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1555724 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-5325-b0a89283
DERBY-5325 Checkpoint fails with ClosedChannelException in InterruptResilienceTest Patch derby-5325-refactor-b, which refactors redundant code and cleans up some comments and Javadoc. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1151612 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/store/raw/data/RAFContainer4.java", "hunks": [ { "added": [ " // those monitors during container recovery. So, just forge ahead" ], "header": "@@ -292,7 +292,7 @@ class RAFContainer4 extends RAFContainer {", ...
derby-DERBY-5325-b7f22c34
DERBY-5325 Checkpoint fails with ClosedChannelException in InterruptResilienceTest Patch derby-5325a: With NIO, writeRAFHeader has two methods leading to interruptible IO: - getEmbryonicPage - writeHeader Currently, getEmbryonicPage may throw InterruptDetectedException and hence, so may writeRAFHeader. writeHead...
[ { "file": "java/engine/org/apache/derby/impl/store/raw/data/RAFContainer4.java", "hunks": [ { "added": [], "header": "@@ -622,10 +622,6 @@ class RAFContainer4 extends RAFContainer {", "removed": [ " // Recovery is in progress, wait for another", ...
derby-DERBY-5328-cee7de4b
DERBY-5328: Improve the re-entrancy of the NetServlet. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1155367 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/drda/org/apache/derby/drda/NetServlet.java", "hunks": [ { "added": [ "\tprivate final static String[] knownLang =", " { \"cs\",\"en\",\"es\",\"de_DE\",\"fr\",\"hu\",\"it\", \"ja_JP\",\"ko_KR\",\"pl\",\"pt_BR\",\"ru\",\"zh_CN\",\"zh_TW\" };", " ...
derby-DERBY-5336-c5a71001
DERBY-5336: Repeated database creation causes OutOfMemoryError Clean up context when the daemon is shut down. Added regression test, more or less copied from patch provided by Aja Walker (aja at ajawalker dot com). Patch file: derby-5336-1a-remove_context_on_stop.diff derby-5336-2a-regression_test.diff ...
[]
derby-DERBY-5338-f30426b5
DERBY-1903 Convert largedata/LobLimits.java to junit DERBY-5308 Investigate if largeData/LobLimits.java can be run for client Patch derby-1903_client_diff.txt enables client for largedata.LobLimitsLite. It disables the test cases that fail with client: DERBY-5338 client gives wrong SQLState and protocol error insertin...
[]
derby-DERBY-534-00b0dbe4
DERBY-534: Support use of the WHEN clause in CREATE TRIGGER statements Add a test case to verify that the WHEN clause SPS is invalidated and recompiled if one of its dependencies requests a recompilation. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1529145 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-534-05b022f3
DERBY-534: Support use of the WHEN clause in CREATE TRIGGER statements Fix incorrect null check when merging subqueryTrackingArray and materializedSubqueries in GenericStatementContext.setTopResultSet(). Used to cause NullPointerException in some cases when a WHEN clause contained a subquery. Add more tests for scala...
[]
derby-DERBY-534-1725dd14
DERBY-534: Support use of the WHEN clause in CREATE TRIGGER statements Add the WHEN clause syntax to the grammar and wire it together with the existing partial code for the WHEN clause. Make RowTriggerExecutor and StatementTriggerExecutor execute the WHEN clause and use the result to decide whether the trigger action...
[ { "file": "java/engine/org/apache/derby/impl/sql/compile/CreateTriggerNode.java", "hunks": [ { "added": [], "header": "@@ -227,7 +227,6 @@ class CreateTriggerNode extends DDLStatementNode", "removed": [ "\t * @param whenOffset\t\t\toffset of start of WHEN clause" ...
derby-DERBY-534-211adc3c
DERBY-534: Support use of the WHEN clause in CREATE TRIGGER statements Remove logic in the readExternal() and writeExternal() methods of TriggerInfo and TriggerDescriptor that was originally put there for compatibility between different Derby versions. Since these objects are only persisted as part of a stored prepare...
[ { "file": "java/engine/org/apache/derby/iapi/sql/dictionary/DataDescriptorGenerator.java", "hunks": [ { "added": [ " return new TriggerDescriptor(" ], "header": "@@ -378,12 +378,7 @@ public class DataDescriptorGenerator", "removed": [ " ...
derby-DERBY-534-50734d82
DERBY-534: Support use of the WHEN clause in CREATE TRIGGER statements Make the code in TriggerDescriptor.getActionSPS() reusable for TriggerDescriptor.getWhenClauseSPS() so that the fixes for DERBY-4874 and Cloudscape bug 4821 also get applied to the WHEN clause. git-svn-id: https://svn.apache.org/repos/asf/db/derby...
[ { "file": "java/engine/org/apache/derby/iapi/sql/dictionary/TriggerDescriptor.java", "hunks": [ { "added": [ " return getSPS(lcc, false /* isWhenClause */);", " }", "", " /**", " * Get the SPS for the triggered SQL statement or...
derby-DERBY-534-51f910f6
DERBY-534: Support use of the WHEN clause in CREATE TRIGGER statements Disallow references to tables in the SESSION schema in the WHEN clause. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1527993 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/sql/compile/CreateTriggerNode.java", "hunks": [ { "added": [ " // Throw an exception if the WHEN clause or the triggered SQL", " // statement references a table in the SESSION schema.", " if (refere...
derby-DERBY-534-6a17f800
DERBY-534: Support use of the WHEN clause in CREATE TRIGGER statements Reject references to generated columns in the NEW transition variables of BEFORE triggers, as required by the SQL standard. See also DERBY-3948. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1527489 13f79535-47bb-0310-9956-ffa45...
[]
derby-DERBY-534-75fbb865
DERBY-534: Add a disabled test case for NPE with subquery in WHEN clause git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1525819 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-534-a50f8954
DERBY-534: Support use of the WHEN clause in CREATE TRIGGER statements Add more tests. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1540690 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-534-c955b823
DERBY-534: Support use of the WHEN clause in CREATE TRIGGER statements Add tests to verify that the when clause operates with the privileges of the user that created the trigger, and that exceptions thrown in the WHEN clause are handled gracefully. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1531...
[]
derby-DERBY-534-d23659a0
DERBY-534: Support use of the WHEN clause in CREATE TRIGGER statements Reuse code for dependency checking of the triggered SQL statement for checking dependencies in the WHEN clause. Add test to verify that attempts to drop columns referenced in the WHEN clause detect that the trigger is dependent on the columns. gi...
[ { "file": "java/engine/org/apache/derby/impl/sql/execute/AlterTableConstantAction.java", "hunks": [ { "added": [ "import org.apache.derby.iapi.sql.compile.Visitable;" ], "header": "@@ -43,6 +43,7 @@ import org.apache.derby.iapi.sql.ResultSet;", "removed": [] ...
derby-DERBY-534-d9878ca0
DERBY-534: Support use of the WHEN clause in CREATE TRIGGER statements Allow references to transition variables and transition tables in the WHEN clause. To support this, a new column WHENCLAUSETEXT is added to the SYS.SYSTRIGGERS table, and a corresponding field is added to the TriggerDescriptor class. The logic tha...
[ { "file": "java/engine/org/apache/derby/iapi/services/io/StoredFormatIds.java", "hunks": [ { "added": [ " * Class org.apache.derby.impl.sql.catalog.TriggerDescriptor, used for", " * trigger descriptors if the dictionary version is 10.11 or higher.", " ...
derby-DERBY-534-db60062a
DERBY-534: Support use of the WHEN clause in CREATE TRIGGER statements Move common logic for executing WHEN clause and trigger action to the base class GenericTriggerExecutor. In addition to reducing code duplication, the change makes row triggers reuse the prepared statement for the WHEN clause (same as it already do...
[ { "file": "java/engine/org/apache/derby/impl/sql/execute/GenericTriggerExecutor.java", "hunks": [ { "added": [ " private SPSDescriptor getAction() throws StandardException" ], "header": "@@ -112,7 +112,7 @@ abstract class GenericTriggerExecutor", "removed":...
derby-DERBY-534-df73e361
DERBY-534: Support use of the WHEN clause in CREATE TRIGGER statements Forbid CREATE TRIGGER statements whose WHEN clause contains a parameter marker or returns a non-BOOLEAN value. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1528401 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-534-ea25568c
DERBY-534: Support use of the WHEN clause in CREATE TRIGGER statements Add dblook support for triggers with a WHEN clause. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1534988 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/tools/org/apache/derby/impl/tools/dblook/DB_Trigger.java", "hunks": [ { "added": [ " // Column name constants for SYS.SYSTRIGGERS", " private static final String TRIGGERNAME = \"TRIGGERNAME\";", " private static final String SCHEMAID = \"S...
derby-DERBY-5341-f30426b5
DERBY-1903 Convert largedata/LobLimits.java to junit DERBY-5308 Investigate if largeData/LobLimits.java can be run for client Patch derby-1903_client_diff.txt enables client for largedata.LobLimitsLite. It disables the test cases that fail with client: DERBY-5338 client gives wrong SQLState and protocol error insertin...
[]
derby-DERBY-5342-400ea2e0
DERBY-5342: make ScriptTestCase support ij properties This patch was contributed by Houx Zhang (houxzhang at gmail dot com) This patch refactors the ij utilMain class so that the code that supports the properties: - ij.showNoConnectionsAtStart - ij.showNoCountForSelect is extracted into a separate method so that ...
[ { "file": "java/tools/org/apache/derby/impl/tools/ij/utilMain.java", "hunks": [ { "added": [ "\t\t\tsupportIJProperties(connEnv[currCE]);" ], "header": "@@ -239,23 +239,7 @@ public class utilMain implements java.security.PrivilegedAction {", "removed": [ ...
derby-DERBY-5343-09ecd71c
DERBY-5343: Upgrade tests failing with java.lang.IllegalAccessException Rework the workaround for DERBY-23 added by DERBY-5316 so that it doesn't attempt to modify final fields. Modifying final fields doesn't seem to work prior to Java 5. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1148302 13f795...
[]
derby-DERBY-5344-8c86e54c
DERBY-1903 convert LobLimits.java test to JUnit Enable updateClob2 test for client and lite configuration. It is still disabled for embedded in LobLimitsTest because of DERBY-5344 updateClob2 test in LobLimitsTest gets OutOfMemoryError git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1149662 13f795...
[]
derby-DERBY-5346-6708cb9a
DERBY-5346: ij3Test fails on phoneME Make the test use a data source instead of a connection URL on CDC/Foundation Profile. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1148687 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-5347-d34c2ceb
DERBY-5347 Derby loops filling logs and consuming all CPU with repeated error: java.net.SocketException: EDC5122I Input/output error. If accept does not block and continues to throw errors, retry and log the exception two more times times at 1 second intervals and then if it still fails, shutdown the server. git...
[ { "file": "java/drda/org/apache/derby/impl/drda/ClientThread.java", "hunks": [ { "added": [ " try { // Check for PrivilegedActionException", " clientSocket =", " acceptClientWithRetry();"...
derby-DERBY-5357-78c2db1d
DERBY-5357 SQLJ.INSTALL_JAR shouldn't use identifier as file name Since SQL identifiers can contain arbitrary characters, it is not safe to use them as is as part of a file name. Trying ot map parts of the name by excluding unsafe characters leads to a chance of name collision. So, we have changed the naming altogethe...
[ { "file": "java/engine/org/apache/derby/iapi/sql/dictionary/DataDescriptorGenerator.java", "hunks": [ { "added": [ "import org.apache.derby.iapi.services.sanity.SanityManager;" ], "header": "@@ -45,6 +45,7 @@ import org.apache.derby.catalog.UUID;", "removed": ...
derby-DERBY-5358-5355fd27
DERBY-5358: SYSCS_COMPRESS_TABLE failed with conglomerate not found exception Make TableDescriptor.heapConglomNumber volatile to ensure that getHeapConglomerateId() never sees a partly initialized value. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1354015 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/iapi/sql/dictionary/TableDescriptor.java", "hunks": [ { "added": [ "", " /**", " * <p>", " * The id of the heap conglomerate for the table described by this", " * instance. The value -1 mea...
derby-DERBY-5363-8bdf7afe
DERBY-5363 Tighten default permissions of DB files with >= JDK6 Patch derby-5363-followup, which adds a missing accessController block around setting the system property SERVER_STARTED_FROM_CMD_LINE. Without the patch, this would fail if running with a security manager specified on the command line. If the property ...
[ { "file": "java/drda/org/apache/derby/drda/NetworkServerControl.java", "hunks": [ { "added": [ "import java.security.AccessController;", "import java.security.PrivilegedExceptionAction;" ], "header": "@@ -25,6 +25,8 @@ import java.io.PrintWriter;", "...
derby-DERBY-5363-a6026ca8
DERBY-5363 Tighten permissions of DB files to owner with >= JDK7 Patch derby-5363-followup-linux. RestrictiveFilePermissionsTest for this feature broke on some platforms (thanks to Kathey for noticing). Apparently, the ACL view of Posix file system permissions is not available for all Unix/Linux versions in JDK 1.7 (...
[]
derby-DERBY-5363-a65a5980
DERBY-5363 Tighten permissions of DB files to owner with >= JDK7 Patch derby-5363-limit-to-java7b, which limits the default restrictive permission for the network server further: only on Java 7 or higher. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1179320 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/drda/org/apache/derby/drda/NetworkServerControl.java", "hunks": [ { "added": [ "import org.apache.derby.iapi.services.info.JVMInfo;" ], "header": "@@ -29,6 +29,7 @@ import java.security.AccessController;", "removed": [] } ] }, { ...
derby-DERBY-5363-dc43cf84
DERBY-5363 Tighten default permissions of DB files with >= JDK6 Patch derby-5363-full-5 implements the ability to restrict file permission of newly created directories and files beyond the default access (cf. umask on Posix file systems and similar on NTFS), i.e. to the account creating the file. This behavior is con...
[ { "file": "java/drda/org/apache/derby/impl/drda/DssTrace.java", "hunks": [ { "added": [ "import java.security.AccessControlException;", "import org.apache.derby.iapi.services.io.FileUtil;" ], "header": "@@ -24,10 +24,12 @@ import java.io.File;", "rem...
derby-DERBY-5363-ff249585
DERBY-5363 Tighten permissions of DB files to owner with >= JDK7 Patch derby-5363-followup-unix. It turns out there is no guarantee the the underlying file system supports ACLs even though Files#getFileAttributeView called with aclFileAttributeViewClz.class as an argument returns an object. We also need to call the m...
[ { "file": "java/engine/org/apache/derby/iapi/services/io/FileUtil.java", "hunks": [ { "added": [ " private static Class fileStoreClz;", " private static Method supportsFileAttributeView;", " private static Method getFileStore;" ], "header"...
derby-DERBY-5367-9a3cbedf
DERBY-5367: Stale data retrieved when using new collation=TERRITORY_BASED:PRIMARY feature Deoptimize code path for BTree insert when updating columns with a collation different from UCS BASIC. Simply undeleting the existing matching row (marked as deleted) may be incorrect, because the value stored there can be differ...
[ { "file": "java/engine/org/apache/derby/impl/store/access/btree/BTree.java", "hunks": [ { "added": [], "header": "@@ -57,8 +57,6 @@ import java.io.ObjectInput;", "removed": [ "import org.apache.derby.iapi.services.io.ArrayUtil;", "" ] }, ...
derby-DERBY-5369-0d2a54f3
DERBY-5369: Checkin Brett Bergquist's patch to add != to the list of operators supported by restricted table functions. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1160858 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-537-3cfc8572
DERBY-537 (partial) Change the DatabaseClassLoadingTest to install and replace the jar files using the SupportFilesSetup decorator so that the engine will have the correct permissions to read the jar files. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@473780 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-537-609999f7
DERBY-537 (partial) Remove some dead code for handling jar files stored within the database. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@474376 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/iapi/store/access/FileResource.java", "hunks": [ { "added": [], "header": "@@ -22,7 +22,6 @@", "removed": [ "import org.apache.derby.iapi.store.access.DatabaseInstant;" ] }, { "added": [ "\t...
derby-DERBY-537-66f66a11
DERBY-537 Fix sqlj.replace_jar and sqlj.remove_jar to work under a security manager. Add a test to test the simple mechanics of the the sqlj functions separated from the jar files being active on the database class path. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@483738 13f79535-47bb-0310-9956-ff...
[ { "file": "java/engine/org/apache/derby/impl/sql/execute/JarUtil.java", "hunks": [ { "added": [ " long generationId = setJar(jarExternalName, is, true, 0L);" ], "header": "@@ -133,7 +133,7 @@ class JarUtil", "removed": [ " long ...
derby-DERBY-537-6989c4c7
DERBY-537 (partial) Cleanup JarUtil removing code that is never called and making class package private. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@473416 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/sql/execute/JarUtil.java", "hunks": [ { "added": [ "class JarUtil" ], "header": "@@ -48,12 +48,8 @@ import java.sql.CallableStatement;", "removed": [ "public class JarUtil", "\tpublic static fina...
derby-DERBY-537-9fef6397
DERBY-537 (partial) Call FileResource.add in a privleged block when executing code to add a jar, driven by sqlj.install_jar. Allows one test fixture in DatabaseClassLoadingTest to be executed with a security manager. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@473834 13f79535-47bb-0310-9956-ffa450...
[ { "file": "java/engine/org/apache/derby/impl/sql/execute/JarUtil.java", "hunks": [ { "added": [], "header": "@@ -39,7 +39,6 @@ import org.apache.derby.iapi.sql.depend.DependencyManager;", "removed": [ "import org.apache.derby.iapi.services.io.FileUtil;" ] ...
derby-DERBY-537-a4b59331
DERBY-709, committing on behalf of Suresh Thalamati -- Removed the requirement for read permission on "user.dir" for backup to run under security manager. Absolute Path were used only to log into backup history file. Changed it to log canonical paths only if it can be obtainer ,otherwise only relative paths are writte...
[ { "file": "java/engine/org/apache/derby/impl/store/raw/RawStore.java", "hunks": [ { "added": [ " private static final int REGULAR_FILE_GET_CANONICALPATH_ACTION = 15;", " private static final int STORAGE_FILE_GET_CANONICALPATH_ACTION = 16;" ], "header":...
derby-DERBY-537-ed1c2e3b
DERBY-537 (partial) Fix the reading of the jar file (through a URL or file name) for sqlj.install_jar and replace_jar to be under a privileged block. Switched the order of lookup from the jar path to be URL and then as a file name. Otherwise a security exception is thrown trying to open the URL path as a file name. g...
[ { "file": "java/engine/org/apache/derby/iapi/services/io/FileUtil.java", "hunks": [ { "added": [], "header": "@@ -26,7 +26,6 @@ import org.apache.derby.io.WritableStorageFactory;", "removed": [ "import java.net.*;" ] } ] }, { "file": "java/en...
derby-DERBY-5370-8f23d8f7
DERBY-5370: Checkin in Brett Bergquist's patch to make Restriction.toSQL() handle more data types. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1160445 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-5374-ce63a70b
DERBY-5374; converted ij5Test fails with weme6.2 (CDC/Foundation): junit.framework.ComparisonFailure: Output at line 1 expected:<CONNECTION0* - jdbc:derby:wombat> but was:<ERROR XJ004: Database '' not found.> skipping the test with JSR169/CDC/Foundation. Also correcting a comment. git-svn-id: https://svn.apache.o...
[]
derby-DERBY-5377-8454e15e
DERBY-5377; AssertionFailedError in testCaseCS4595B_NonUniqueIndex in AccessTest Adjusting the test to not check for pages visited in assertStatsOK method if 'null' is passed in for the expPages parameter, and passing in 'null' with the three queries that have shown to hit this issue. git-svn-id: https://svn.ap...
[]
derby-DERBY-5377-efe47b40
DERBY-5377: AssertionFailedError in testCaseCS4595B_NonUniqueIndex in AccessTest Dump the statistics on assert failures to help debugging the problem. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1227121 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-5379-2198fafc
DERBY-5379 testDERBY5120NumRowsInSydependsForTrigger - The number of values assigned is not the same as the number of specified or implied columns. DERBY-5484 Upgradetest fails with upgrade from 10.8.2.2 (7 errors, 1 failure) on trunk The above 2 jiras are duplicates. The upgrade tests are failing when doing an upgrad...
[]
derby-DERBY-5382-4ee7918f
DERBY-5382; Convert existing harness recovery tests to JUnit tests Adjusting OCRecoveryTest to create the database in the first launched method. Modifying TestConfiguration to this end to look for a property 'derby.tests.defaultDatabaseName' which can get passed on in a new BaseTestCase method ((assertLau...
[ { "file": "java/testing/org/apache/derbyTesting/junit/TestConfiguration.java", "hunks": [ { "added": [ " // Check for possibly passed in DatabaseName", " // this is used in OCRecoveryTest", " String propDefDbName = getSystemProperties().getPro...
derby-DERBY-5382-e06ed553
DERBY-5382; Convert existing harness recovery test to JUnit tests follow up patch, which - removes shutdowns which were preventing any recovery to happen - makes the first step a separate forkable method - adds some comments git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1293028 13f79535-47b...
[]
derby-DERBY-5390-8f874691
DERBY-5390: NPE in BasicDatabase.stop in replication slave mode (dd.clearSequenceCaches) Added check to see if the data dictionary is available. Patch file: derby-5390-1a_check_for_null.diff git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1164358 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/db/BasicDatabase.java", "hunks": [ { "added": [ " // The data dictionary is not available if this database has the", " // role as an active replication slave database.", " if (dd != null) {", ...
derby-DERBY-5391-70ff9b02
DERBY-5391: Fix the statement duration and error log reader vtis to handle the new timestamp format which we've been using in Derby logs since 10.7. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1162827 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/diag/ErrorLogReader.java", "hunks": [ { "added": [ "\tprivate int endTimestampIndex;" ], "header": "@@ -89,7 +89,7 @@ public class ErrorLogReader extends VTITemplate", "removed": [ "\tprivate int gmtIndex;" ...
derby-DERBY-5393-6d2e2b6d
DERBY-5393: Remove old in-memory database purge mechanism Removed deprecated functionality. Patch file: derby-5393-1a.diff git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1164370 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/io/VFMemoryStorageFactory.java", "hunks": [ { "added": [], "header": "@@ -63,26 +63,6 @@ public class VFMemoryStorageFactory", "removed": [ " /**", " * TODO: Remove this method once the new mechanism has be...
derby-DERBY-5395-431cefd7
DERBY-5395: Let only the DBO run certain diagnostic vtis. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1163740 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/diag/ErrorLogReader.java", "hunks": [ { "added": [ "import java.security.PrivilegedAction;", "import java.security.AccessController;" ], "header": "@@ -26,6 +26,8 @@ import java.io.FileNotFoundException;", "rem...
derby-DERBY-5398-c8986dff
DERBY-5398: Use a transient transaction to flush unused sequence values back to disk during orderly engine shutdown. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1166859 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/sql/catalog/SequenceUpdater.java", "hunks": [ { "added": [ "import org.apache.derby.iapi.services.i18n.MessageService;", "import org.apache.derby.iapi.services.monitor.Monitor;", "import org.apache.derby.iapi.store.acce...
derby-DERBY-540-bf4839e7
DERBY-540 Do not prepend database name for classpath databases with leading slash.This causes databases to be not found when in jar files on the database. Correct the lookup of resources in the class path storage factory to not use the methods that prepend the current class name, instead use methods from ClassLoader di...
[ { "file": "java/engine/org/apache/derby/impl/io/CPFile.java", "hunks": [ { "added": [ "" ], "header": "@@ -21,13 +21,9 @@", "removed": [ "import org.apache.derby.io.StorageRandomAccessFile;", "", "import org.apache.derby.iapi.serv...
derby-DERBY-5406-35549162
DERBY-5406: Intermittent failures in CompressTableTest and TruncateTableTest Detect if a statement is invalidated while it is being recompiled and retry the compilation. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1175785 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/sql/GenericPreparedStatement.java", "hunks": [ { "added": [ " /** True if the statement was invalidated while it was being compiled. */", " private boolean invalidatedWhileCompiling;" ], "header": "@@ -147,6...
derby-DERBY-5406-6555d3ce
DERBY-5406: Intermittent failures in CompressTableTest and TruncateTableTest If GenericActivationHolder determines that a recompile is needed, it now throws an exception to signal that to the caller instead of doing the recompilation itself. This way, if the statement is invalidated again during the recompilation, the...
[ { "file": "java/engine/org/apache/derby/impl/sql/GenericActivationHolder.java", "hunks": [ { "added": [ " final boolean needNewClass =", " gc == null || gc != ps.getActivationClass();", "\t\t\tif (needNewClass || !ac.isValid())", ...
derby-DERBY-5406-878e2115
DERBY-5406: Intermittent failures in CompressTableTest and TruncateTableTest Retry compilation if it fails because a conglomerate has disappeared. This may happen if DDL, compress, truncate or similar operations happen while the statement is being compiled. When trying again, the compilation should find the new conglo...
[ { "file": "java/engine/org/apache/derby/impl/sql/GenericStatement.java", "hunks": [ { "added": [ " String prevErrorId = null;", " boolean recompile = false;", " } catch (StandardException se) {", " // There is ...
derby-DERBY-5406-be1b5ea1
DERBY-5406: Intermittent failures in CompressTableTest and TruncateTableTest Push retry logic down to GenericStatement.prepare() so that it also covers the code path from Connection.prepareStatement(). The previous location only covered compilations requested by the execute methods. git-svn-id: https://svn.apache.org...
[ { "file": "java/engine/org/apache/derby/impl/sql/GenericPreparedStatement.java", "hunks": [ { "added": [ " boolean invalidatedWhileCompiling;" ], "header": "@@ -148,7 +148,7 @@ public class GenericPreparedStatement", "removed": [ " private bool...
derby-DERBY-5406-d0c5d9c0
DERBY-5406: Intermittent failures in CompressTableTest and TruncateTableTest Make sure the statement receives an invalidation request if the conglomerate disappears before FromBaseTable has created the dependency on the table descriptor. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1187204 13f7953...
[ { "file": "java/engine/org/apache/derby/impl/sql/compile/FromBaseTable.java", "hunks": [ { "added": [ "import org.apache.derby.iapi.sql.depend.DependencyManager;", "" ], "header": "@@ -53,6 +53,8 @@ import org.apache.derby.iapi.sql.compile.RequiredRowOrderin...
derby-DERBY-5407-55d3591d
DERBY-5407 When run across the network, dblook produces unusable DDL for VARCHAR FOR BIT DATA columns. The serialization of UDT associated with SYSCOLUMNS.COLUMNBDATATYPE on the wire from the network server end happens correctly. The same serialized data is received by the client but when we try to instantiate the UD...
[]
derby-DERBY-5409-0c8f5852
DERBY-5409: GrantRevokeDDLTest fails under Java 7 Drop created schemas in test cases to prevent interference when test cases run in a different order than the order in which they appear in the source file. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1170470 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-5412-dc5f56a1
DERBY-5412: MemoryLeakFixesTest.testRepeatedDatabaseCreationWithAutoStats() fails on phoneME: java.lang.InternalError: Number of class names exceeds vm limit. BaseTestCase: Added helper method isPhoneME() that checks if the test is running on a phoneME platform. OldVersions and lang._Suite: Replaced existing checks f...
[]
derby-DERBY-5413-8bdf7afe
DERBY-5363 Tighten default permissions of DB files with >= JDK6 Patch derby-5363-followup, which adds a missing accessController block around setting the system property SERVER_STARTED_FROM_CMD_LINE. Without the patch, this would fail if running with a security manager specified on the command line. If the property ...
[ { "file": "java/drda/org/apache/derby/drda/NetworkServerControl.java", "hunks": [ { "added": [ "import java.security.AccessController;", "import java.security.PrivilegedExceptionAction;" ], "header": "@@ -25,6 +25,8 @@ import java.io.PrintWriter;", "...
derby-DERBY-5416-eebc9c71
DERBY-5416: SYSCS_COMPRESS_TABLE causes an OutOfMemoryError when the heap is full at call time and then gets mostly garbage collected later on. Improve the accuracy of the code that estimates the memory requirement of the sort buffer. When it detects that the current memory usage is lower than the initial memory usage...
[ { "file": "java/engine/org/apache/derby/impl/store/access/sort/MergeInserter.java", "hunks": [ { "added": [ " private long beginMemoryUsage;" ], "header": "@@ -62,9 +62,7 @@ final class MergeInserter implements SortController", "removed": [ "\tpri...
derby-DERBY-5420-df9ed37d
DERBY-5420 Regression suite appears locale sensitive: failed in TableLockBasicTest: bug in RealBasicNoPutResultSetStatistics Patch derby-5420-2 changes the way the localization of the floating point numbers is done for RealBasicNoPutResultSetStatistics to use an explicit decimal format in the localized message text it...
[ { "file": "java/build/org/apache/derbyBuild/MessageBuilder.java", "hunks": [ { "added": [ "import java.util.regex.Matcher;", "import java.util.regex.Pattern;" ], "header": "@@ -27,13 +27,14 @@ import java.io.IOException;", "removed": [ "imp...
derby-DERBY-5421-3d7c2eab
DERBY-5421; NullPointerException during system.nstest.utils.Dbutil.update_one_row merging 1177446 from 10.8 to trunk git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1177475 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/testing/org/apache/derbyTesting/system/nstest/utils/DbUtil.java", "hunks": [ { "added": [ "\t" ], "header": "@@ -226,16 +226,7 @@ public class DbUtil {", "removed": [ "\t\tif (ps != null) {", "\t\t\ttry {", "\t\t\t...
derby-DERBY-5424-b7d90735
DERBY-5424 On z/OS testConnectWrongSubprotocolWithSystemProperty(org.apache.derbyTesting.functionTests.tests.tools.ConnectWrongSubprotocolTest)junit.framework.AssertiFailedError Fix code and test to read and write to service.properties with a consistent encoding git-svn-id: https://svn.apache.org/repos/asf/db/der...
[ { "file": "java/engine/org/apache/derby/impl/services/monitor/StorageFactoryService.java", "hunks": [ { "added": [ "import java.io.InputStreamReader;" ], "header": "@@ -47,6 +47,7 @@ import java.io.FileReader;", "removed": [] }, { "added": ...
derby-DERBY-5425-91f376cc
DERBY-5425: Updateable holdable ResultSet terminates early after 65638 updates Use a BackingStoreHashtable to store rows updated in such a way that they may be seen again later in the scan. The BackingStoreHashtable is made holdable if the ResultSet is holdable so that rows are not lost on commit, as they were before....
[ { "file": "java/engine/org/apache/derby/impl/sql/execute/CurrentOfResultSet.java", "hunks": [ { "added": [], "header": "@@ -30,15 +30,12 @@ import org.apache.derby.iapi.sql.execute.ExecRow;", "removed": [ "import org.apache.derby.iapi.sql.ResultSet;", "impor...
derby-DERBY-5426-68c72e70
DERBY-5426: Improve error message for too much contention on a sequence/identity. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1174290 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/sql/catalog/SequenceUpdater.java", "hunks": [ { "added": [ " // ABSTRACT OR OVERRIDABLE BEHAVIOR TO BE IMPLEMENTED BY CHILDREN" ], "header": "@@ -155,7 +155,7 @@ public abstract class SequenceUpdater implements Cacheable...
derby-DERBY-5426-db26d0a6
DERBY--5445 (Enhance existing concurrency test to stress sequence generators to also stress identity columns) DERBY-4565 added a concurrency test to stress sequence generation. I am making simple modifications to that test to add identity column stress testing. Based on a command line parameter, the test will either d...
[ { "file": "java/testing/org/apache/derbyTesting/perf/clients/Runner.java", "hunks": [ { "added": [ " System.out.print(\"initializing database for \");", " System.out.println((Runner.getLoadOpt( \"identityTest\", 0 ) == 1)?", " \t\t...
derby-DERBY-5438-04c92ef6
DERBY-5438: Empty MAPS table in toursdb - Let insertMaps.main() throw exceptions instead of just printing them to make errors stop the build - Change URL in insertMaps to match the URL in build.xml - Change directory for the process running insertMaps so that it finds the gif files git-svn-id: https://svn.apach...
[ { "file": "java/demo/toursdb/insertMaps.java", "hunks": [ { "added": [ "\tpublic static final String dbURLCS = new String(\"jdbc:derby:toursdb\");", "\t\tSystem.out.println(\"Loading the Derby jdbc driver...\");", "\t\tClass.forName(CSdriver).newInstance();", ...
derby-DERBY-5440-910eb101
DERBY-5440: test failure in testBTreeForwardScan_fetchRows_resumeAfterWait_nonUnique_split(org.apache.derbyTesting.functionTests.tests.store.IndexSplitDeadlockTest)junit.framework.AssertionFailedError: expected:<1> but was:<0> git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1181756 13f79535-47bb-0310-...
[]
derby-DERBY-5444-859720d8
DERBY-5444: SpawnedProcess.complete may fail to destroy the process when a timeout is specified Rewrote loop logic to ensure that the process is destroyed when a timeout is specified and exceeded. Patch file: derby-5444-1c-destroy_on_timeout.diff git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1179...
[ { "file": "java/testing/org/apache/derbyTesting/junit/SpawnedProcess.java", "hunks": [ { "added": [ " final long start = System.currentTimeMillis();", " boolean timedOut = true;", " exitCode = javaProcess.exitValue();", ...
derby-DERBY-5447-b8339336
DERBY-5447: Deadlock in AutomaticIndexStatisticsTest.testShutdownWhileScanningThenDelete (BasePage.releaseExclusive and Observable.deleteObserver (BaseContainerHandle)) Clean the daemon context only after the running worker thread (if any) has finished to avoid Java deadlock when closing the container handles obtaine...
[ { "file": "java/engine/org/apache/derby/impl/services/daemon/IndexStatisticsDaemonImpl.java", "hunks": [ { "added": [ " // Controls execution of last cleanup step outside of the synchronized", " // block. Should only be done once, and this is ensured by the gu...
derby-DERBY-5449-90e6ec94
DERBY-5449: 10.8 client with 10.5 server gives ClassCastException Convert BOOLEAN parameter values to SMALLINT (and not only the parameter meta-data) when talking to old servers that don't understand BOOLEAN. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1186020 13f79535-47bb-0310-9956-ffa450edef68...
[]
derby-DERBY-5453-5250aca2
DERBY-5453: Remove unused methods in Cursor and NetCursor git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1181713 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/client/org/apache/derby/client/am/Cursor.java", "hunks": [ { "added": [], "header": "@@ -126,12 +126,6 @@ public abstract class Cursor {", "removed": [ " public Cursor(Agent agent, byte[] dataBuffer) {", " this(agent);", "...
derby-DERBY-5454-23e8c92e
DERBY-5454; ERROR 40001 deadlock in nstest on select max(serialkey) replacing the code causing the intermittent deadlock with non-jdbc calls git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1311804 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/testing/org/apache/derbyTesting/system/nstest/utils/DbUtil.java", "hunks": [ { "added": [], "header": "@@ -24,7 +24,6 @@ package org.apache.derbyTesting.system.nstest.utils;", "removed": [ "import java.sql.ResultSet;" ] }, { ...
derby-DERBY-5456-0086962a
DERBY-5456: Make the network server more diligent about collecting up all of the local addresses which it can. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1183463 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/drda/org/apache/derby/impl/drda/NetworkServerControlImpl.java", "hunks": [ { "added": [ " localAddresses = new ArrayList(3);", " localAddresses.add(bindAddr);", " ", " try { localAddresses.add(InetAddress.getLo...
derby-DERBY-5459-f9a06892
DERBY-5459 Result set metadata are out of sync on client after underlying table is altered Patch derby-5459-3. We now resend the result set metadata to the client when the cursor is opened if the prepared statement gets recompiled due to it being out of date when the server tries to execute it (DRDAConnThread line 871...
[ { "file": "java/drda/org/apache/derby/impl/drda/DRDAConnThread.java", "hunks": [ { "added": [ " database.getCurrentStatement().sqldaType = sqldaType;" ], "header": "@@ -828,6 +828,7 @@ class DRDAConnThread extends Thread {", "removed": [...
derby-DERBY-5463-404a2f06
DERBY-5463: Don't alter the value of drdamaint when generating a new release.properties file; commit derby-5463-01-aa-leaveDRDAmaintIDAlone.diff. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1557823 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/build/org/apache/derbyPreBuild/ReleaseProperties.java", "hunks": [ { "added": [ "import java.io.FileInputStream;", "import java.util.Properties;" ], "header": "@@ -22,10 +22,12 @@", "removed": [] }, { "added": [ ...
derby-DERBY-5466-2782d722
DERBY-5466: Enable the new var_pop(), var_samp(), stddev_pop(), and stddev_samp() aggregates by wiring Scott's aggregators into the Derby bind logic. Commit derby-5466-02-ab-bindLogic.diff. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1694918 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/sql/compile/AggregateNode.java", "hunks": [ { "added": [ "import org.apache.derby.catalog.TypeDescriptor;", "import org.apache.derby.catalog.types.AggregateAliasInfo;" ], "header": "@@ -23,6 +23,8 @@ package\torg....
derby-DERBY-5466-a37ea514
DERBY-5466: Raise a useful error when someone attempts to use DISTINCT with the statistics aggregates. Commit derby-5466-03-aa-distinctError.diff. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1695154 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/sql/compile/AggregateNode.java", "hunks": [ { "added": [ " boolean noSchema = true;", " noSchema = (userAggregateName.getSchemaName() == null );" ], "header": "@@ -349,8 +349,10 @@ class Aggregat...
derby-DERBY-5468-8e9474f0
DERBY-5468: Assertion failed in AutomaticIndexStatisticsMultiTest.testMTSelectWithDDL (expected:<0> but was:<1>) Improves the error reporting such that the cause of the error is reported. Patch file: derby-5468-1a-error_reporting.diff git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1185187 13f79535...
[]
derby-DERBY-5472-028d92e6
DERBY-5472: Speed up MemoryLeakFixesTest.testRepeatedDatabaseCreationWithAutoStats() Reduce the amount of statement compilation and the number of iterations to speed up the test case, while preserving the ability to reproduce the original problem. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@11866...
[]
derby-DERBY-5475-88b42546
DERBY-5475: Formalize use of old Derby distributions in test Expose the release repository in TestConfiguration. Removed some leftover throws IOException, and added some exception handling to avoid one throws IOException clause. Patch file: derby-5475-4a-less_exceptions_and_expose.diff git-svn-id: https://svn.apach...
[ { "file": "java/testing/org/apache/derbyTesting/junit/DerbyDistribution.java", "hunks": [ { "added": [ " * Derives the information for a Derby distribution.", " *", " File[] productionJars, File[] testingJars) {" ], ...
derby-DERBY-5475-e2f4f825
DERBY-5475: Formalize use of old Derby distributions in tests Added a very simple repository for Derby releases. It is compatible with the existing property used to control where the tests look for old releases (i.e. the upgrade and the compatibility test): derbyTesting.oldReleasePath Added two new classes in the ju...
[ { "file": "java/testing/org/apache/derbyTesting/junit/ReleaseRepository.java", "hunks": [ { "added": [ "/*", "", " Derby - Class org.apache.derbyTesting.junit.ReleaseRepository", "", " Licensed to the Apache Software Foundation (ASF) under ...
derby-DERBY-5475-e8c9fe3e
DERBY-5475: Formalize use of old Derby distributions in tests Another preparation patch, mostly renaming a class and some methods. Renamed DerbyVersionSimple to Version to indicate that it isn't coded specifically to represent a Derby version - it can be used to represent any version consisting of a major and a minor ...
[ { "file": "java/testing/org/apache/derbyTesting/junit/DerbyVersion.java", "hunks": [ { "added": [ " private final Version simpleVersion;" ], "header": "@@ -82,7 +82,7 @@ public class DerbyVersion", "removed": [ " private final DerbyVersionSimpl...
derby-DERBY-5484-2198fafc
DERBY-5379 testDERBY5120NumRowsInSydependsForTrigger - The number of values assigned is not the same as the number of specified or implied columns. DERBY-5484 Upgradetest fails with upgrade from 10.8.2.2 (7 errors, 1 failure) on trunk The above 2 jiras are duplicates. The upgrade tests are failing when doing an upgrad...
[]
derby-DERBY-5486-d3134918
DERBY-5486: Remove useless tests which are causing instabilities in the nightly test runs. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1197272 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-5488-10608cf4
DERBY-5488: Move BigDecimal getters/setters from JDBC 2.0 implementation into JSR 169 implementation. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1197264 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/jdbc/EmbedCallableStatement.java", "hunks": [ { "added": [ "import java.math.BigDecimal;" ], "header": "@@ -31,6 +31,7 @@ import org.apache.derby.iapi.services.sanity.SanityManager;", "removed": [] } ] }...
derby-DERBY-5488-57c1b5cf
DERBY-5488: Add JDBC limit/offset escape syntax. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1200492 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/iapi/sql/execute/ResultSetFactory.java", "hunks": [ { "added": [ "\t * @param fetchFirstMethod The FETCH FIRST/NEXT parameter was specified", "\t * @param hasJDBClimitClause True if the offset/fetchFirst clauses were added by JDBC LIM...
derby-DERBY-5488-59f54f8f
DERBY-5488: First changes to implement new JDBC 4.1 object mappings. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1196680 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-5488-955f104b
DERBY-5488: Add a couple additional limit/offset tests. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1201041 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-5488-96748ad1
DERBY-5488: Eliminate some NPEs in ParameterMappingTest when run on OJEC. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1199392 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/iapi/types/BigIntegerDecimal.java", "hunks": [ { "added": [ "import java.math.BigDecimal;" ], "header": "@@ -21,6 +21,7 @@", "removed": [] }, { "added": [ "\tpublic Object\tgetObject() throw...
derby-DERBY-5488-ce664ad5
DERBY-5488: Rename SCOPE_CATLOG to SCOPE_CATALOG and add a redundant trailing SCOPE_CATLOG column to the ResultSet returned by DatabaseMetaData.getColumns(). git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1204684 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/jdbc/EmbedDatabaseMetaData.java", "hunks": [ { "added": [ " * <LI><B>SCOPE_CATALOG</B> String => catalog of table that is the" ], "header": "@@ -1864,7 +1864,7 @@ public class EmbedDatabaseMetaData extends ConnectionCh...