id
stringlengths
22
25
commit_message
stringlengths
137
6.96k
diffs
listlengths
0
63
derby-DERBY-1357-450df233
DERBY-1357: Fix optimizer short-circuit logic. Here is the note from the contributor. I also had to update the lang/predicatePushdown.out master file because with the d1357_v1.patch the order of a couple of qualifiers has changed. Note that the query plans themselves are exactly the same--the only thing that's changed...
[ { "file": "java/engine/org/apache/derby/impl/sql/compile/OptimizerImpl.java", "hunks": [ { "added": [ "", "\t\t/* Determine if the current plan is still less expensive than", "\t\t * the best plan so far. If bestCost is uninitialized then", "\t\t * we w...
derby-DERBY-1361-9634cd20
DERBY-1361 positioned updates and deletes allowed after a commit without repositioning the cursor - if the table is indexed on the columns selected git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@417366 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-1364-d8383bd9
DERBY-1364: Client driver does not roll back the effects of a stored procedure when incorrectly invoked by executeQuery()/executeUpdate() Description of the patch: 1. Checking of the number of result sets returned was moved from executeUpdate/executeQuery to a point in flowExecute where the transaction has not ...
[ { "file": "java/client/org/apache/derby/client/am/CallableStatement.java", "hunks": [ { "added": [], "header": "@@ -127,89 +127,6 @@ public class CallableStatement extends PreparedStatement", "removed": [ " public boolean execute() throws SQLException {", ...
derby-DERBY-1364-fade7e97
DERBY-501: Client and embedded drivers differ on invoking a procedure that returns a single Dynamic resultSet using CallableStatement.executeQuery() This patch modifies EmbedStatement.processDynamicResults() so that it returns the number of dynamic results instead of a boolean. EmbedStatement.executeStatement() uses t...
[ { "file": "java/engine/org/apache/derby/iapi/sql/PreparedStatement.java", "hunks": [ { "added": [], "header": "@@ -101,8 +101,6 @@ public interface PreparedStatement", "removed": [ "\t * @param executeQuery\t\tWhether or not called from a Statement.executeQuery()", ...
derby-DERBY-1365-985a9b0b
DERBY-1365: Fixes two minor problems with logic in Optimizer. Here is the note from contributor: In addition to fixing the two issues described, the patch also resolves another potential problem: there are several places in OptimizerImpl.getNextPermutation() where calls to rewindJoinOrder() are made. These calls typic...
[ { "file": "java/engine/org/apache/derby/iapi/store/access/BackingStoreHashtable.java", "hunks": [ { "added": [ " // Check to see how much memory we think the first row" ], "header": "@@ -273,7 +273,7 @@ public class BackingStoreHashtable", "...
derby-DERBY-1367-0400f845
DERBY-1367: Enable grantRevoke.java test in DerbyNetClient framework. Submitted by Satheesh Bandaram (satheesh@gmail.com) git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@427358 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-1368-47cbf26e
DERBY-1368 EOFException when reading from blob's binary stream This patch just adds a test. Bug was fixed previously with 10.2. I am not sure exactly which checkin fixed it. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@610094 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-137-9f5e1d4a
DERBY-137: Derby metadata always returns JDBC 2 result sets, even when JDBC 3 result sets are required. Summary of the changes: DatabaseMetaData: - getProcedureColumns: modified VTI to return an int instead of a short for the DATA_TYPE column - getTables: new columns: TYPE_CAT, TYPE_SCHEM, TYPE_NAME,...
[ { "file": "java/build/org/apache/derbyBuild/ODBCMetadataGenerator.java", "hunks": [ { "added": [], "header": "@@ -202,9 +202,6 @@ public class ODBCMetadataGenerator {", "removed": [ "\t\tchangeMap.put(\"getPrimaryKeys\",", "\t\t\tnew Byte(TYPE_VALUE_CHANGE))...
derby-DERBY-1373-97cac2ed
DERBY-1373: Encrypted databases cannot be booted using the jar subprotocol Patch Contributed by Sunitha Kambhampati. This patch makes the following changes: 1) Instead of using RandomAccessFile, the verifyKey.dat is read as a InputStream. 2) Add a new test (encryptionKey_jar.sql) for booting encrypted databa...
[ { "file": "java/engine/org/apache/derby/impl/services/jce/JCECipherFactory.java", "hunks": [ { "added": [ "import java.io.InputStream;", "import java.io.DataInputStream;" ], "header": "@@ -48,6 +48,8 @@ import java.security.spec.KeySpec;", "removed":...
derby-DERBY-1374-4d34a234
DERBY-1374 compatibility test fails with PROTOCOL Data Stream Syntax Error.Patch contributed by Fernanda Pizzorno git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@415557 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/client/org/apache/derby/client/net/NetConnectionRequest.java", "hunks": [ { "added": [], "header": "@@ -395,9 +395,6 @@ public class NetConnectionRequest extends Request implements ConnectionRequestIn", "removed": [ " // This specifies the SQL E...
derby-DERBY-1377-0cc1b092
DERBY-1377: (Partial) - Dag's changes to sql/execute/rts git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@429839 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/sql/execute/rts/RunTimeStatisticsImpl.java", "hunks": [ { "added": [ " Licensed to the Apache Software Foundation (ASF) under one or more", " contributor license agreements. See the NOTICE file distributed with", "...
derby-DERBY-1377-11bc2d08
DERBY-1377: (Partial). Inserted license headers to .jj files and updated java files for the tools/ij subdirectory. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@429500 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/tools/org/apache/derby/impl/tools/ij/xaHelper.java", "hunks": [ { "added": [ " Licensed to the Apache Software Foundation (ASF) under one or more", " contributor license agreements. See the NOTICE file distributed with", " this work for addi...
derby-DERBY-1377-15651f53
DERBY-1377 (partial): update license headers on functionTests files outside of the tests directory. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@429889 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/testing/org/apache/derbyTesting/functionTests/util/metadataHelperProcs.java", "hunks": [ { "added": [ " Licensed to the Apache Software Foundation (ASF) under one or more", " contributor license agreements. See the NOTICE file distributed with", ...
derby-DERBY-1377-1d8e53f6
DERBY-1377: (Partial) - Dag's mods to iapi/error git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@429922 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/iapi/error/StandardException.java", "hunks": [ { "added": [ " Licensed to the Apache Software Foundation (ASF) under one or more", " contributor license agreements. See the NOTICE file distributed with", " this work f...
derby-DERBY-1377-20cdca37
DERBY-1377 (Partial) - Fix license headers for the dblook subdirectory. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@429734 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/tools/org/apache/derby/impl/tools/dblook/Logs.java", "hunks": [ { "added": [ " Licensed to the Apache Software Foundation (ASF) under one or more", " contributor license agreements. See the NOTICE file distributed with", " this work for addi...
derby-DERBY-1377-22c1b9ca
DERBY-1377: (partial) - Dag's changes for sql/depend git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@429830 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/sql/depend/DepClassInfo.java", "hunks": [ { "added": [ " Licensed to the Apache Software Foundation (ASF) under one or more", " contributor license agreements. See the NOTICE file distributed with", " this work f...
derby-DERBY-1377-23683f1d
DERBY-1377 (partial): update license headers for plugins subdirectory. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@429773 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "plugins/eclipse/org.apache.derby.ui/src/org/apache/derby/ui/popup/actions/AddDerbyNature.java", "hunks": [ { "added": [ "", "\tDerby - Class org.apache.derby.ui.popup.actions.AddDerbyNature", "", "\tLicensed to the Apache Software Foundation (...
derby-DERBY-1377-270a34de
DERBY-1377: Rototill tree under java/engine/org/apache/derby/impl/store/ git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@429802 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/store/raw/xact/XactXAResourceManager.java", "hunks": [ { "added": [ " Licensed to the Apache Software Foundation (ASF) under one or more", " contributor license agreements. See the NOTICE file distributed with", " ...
derby-DERBY-1377-2dd2d112
DERBY-1377: (Partial) Dag's changes to iapi/sql/execute git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@429920 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/iapi/sql/execute/TupleFilter.java", "hunks": [ { "added": [ " Licensed to the Apache Software Foundation (ASF) under one or more", " contributor license agreements. See the NOTICE file distributed with", " this work f...
derby-DERBY-1377-2e658c29
DERBY-1377: (Partial) - Dag's adjustments to iapi/sql/dictionary git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@429918 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/iapi/sql/dictionary/ViewDescriptor.java", "hunks": [ { "added": [ " Licensed to the Apache Software Foundation (ASF) under one or more", " contributor license agreements. See the NOTICE file distributed with", " this ...
derby-DERBY-1377-3dc2ce45
DERBY-1377 (partial): Update the rest of the files in java/tools. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@429860 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/tools/org/apache/derby/tools/sysinfo.java", "hunks": [ { "added": [ " Licensed to the Apache Software Foundation (ASF) under one or more", " contributor license agreements. See the NOTICE file distributed with", " this work for additional in...
derby-DERBY-1377-4ecc65a1
DERBY-1377 (partial): cleanup a couple of missed files, insert proper license header into the generated ClassSizeCrawler.java git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@430149 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-1377-575d6a11
DERBY-1377: (Partial) Dag's changes to impl/sql/conn for the license header git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@429828 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/sql/conn/TempTableInfo.java", "hunks": [ { "added": [ " Licensed to the Apache Software Foundation (ASF) under one or more", " contributor license agreements. See the NOTICE file distributed with", " this work fo...
derby-DERBY-1377-59bf37d1
DERBY-1377 (partial): Update license headers for client git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@429795 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/client/org/apache/derby/jdbc/ClientXADataSource40.java", "hunks": [ { "added": [ " Licensed to the Apache Software Foundation (ASF) under one or more", " contributor license agreements. See the NOTICE file distributed with", " this work for ...
derby-DERBY-1377-666eb9fe
DERBY-1377: (Partial) - Dag's changes to iapi/sql/depend git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@429914 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/iapi/sql/depend/ProviderList.java", "hunks": [ { "added": [ " Licensed to the Apache Software Foundation (ASF) under one or more", " contributor license agreements. See the NOTICE file distributed with", " this work f...
derby-DERBY-1377-6baf18bb
DERBY-1377: Rototill tree under java/engine/org/apache/derby/iapi/services/ git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@429811 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/iapi/services/uuid/UUIDFactory.java", "hunks": [ { "added": [ " Licensed to the Apache Software Foundation (ASF) under one or more", " contributor license agreements. See the NOTICE file distributed with", " this work...
derby-DERBY-1377-6d913c60
DERBY-1377 (partial): Update license headers in impl/load git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@429897 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/sql/execute/SqlXmlExecutor.java", "hunks": [ { "added": [ " Licensed to the Apache Software Foundation (ASF) under one or more", " contributor license agreements. See the NOTICE file distributed with", " this wor...
derby-DERBY-1377-75588ca7
DERBY-1377: (Partial) - Dag's mods to iapi/sql/conn git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@429867 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/iapi/sql/conn/StatementContext.java", "hunks": [ { "added": [ " Licensed to the Apache Software Foundation (ASF) under one or more", " contributor license agreements. See the NOTICE file distributed with", " this work...
derby-DERBY-1377-75c7276a
DERBY-1377: Rototill tree under java/engine/org/apache/derby/iapi/store/ git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@429816 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/iapi/store/raw/xact/TransactionId.java", "hunks": [ { "added": [ " Licensed to the Apache Software Foundation (ASF) under one or more", " contributor license agreements. See the NOTICE file distributed with", " this w...
derby-DERBY-1377-93fea347
DERBY-1377: Rototilled tree under java/engine/org/apache/derby/impl/services/ git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@429794 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/services/uuid/BasicUUIDGetter.java", "hunks": [ { "added": [ " Licensed to the Apache Software Foundation (ASF) under one or more", " contributor license agreements. See the NOTICE file distributed with", " this ...
derby-DERBY-1377-9a7cd7e8
DERBY-1377: (Partial) Updated the tools/sysinfo directory to use the new license header git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@429515 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/tools/org/apache/derby/impl/tools/sysinfo/ZipInfoProperties.java", "hunks": [ { "added": [ " Licensed to the Apache Software Foundation (ASF) under one or more", " contributor license agreements. See the NOTICE file distributed with", " this...
derby-DERBY-1377-b3ef6b5b
DERBY-1377: Rototill java/shared/org/apache/derby/shared/common/error/ git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@429771 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/shared/org/apache/derby/shared/common/error/ExceptionUtil.java", "hunks": [ { "added": [ " Licensed to the Apache Software Foundation (ASF) under one or more", " contributor license agreements. See the NOTICE file distributed with", " this w...
derby-DERBY-1377-c38b8415
DERBY-1377: Update license headers in org.apache.derbyTesting.unitTests git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@429812 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/testing/org/apache/derbyTesting/unitTests/util/MsgTrace.java", "hunks": [ { "added": [ " Licensed to the Apache Software Foundation (ASF) under one or more", " contributor license agreements. See the NOTICE file distributed with", " this wor...
derby-DERBY-1377-d4580ab6
DERBY-1377: (Partial) Dag's updates to iapi/sql/compile git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@429863 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/iapi/sql/compile/Visitor.java", "hunks": [ { "added": [ " Licensed to the Apache Software Foundation (ASF) under one or more", " contributor license agreements. See the NOTICE file distributed with", " this work for a...
derby-DERBY-1377-de243e0f
DERBY-1377: (Partial) - Updated license headers for the build subtree. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@429495 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/build/org/apache/derbyBuild/splitmessages.java", "hunks": [ { "added": [ " Licensed to the Apache Software Foundation (ASF) under one or more", " contributor license agreements. See the NOTICE file distributed with", " this work for addition...
derby-DERBY-1377-dff95a18
DERBY-1377: Fix license headers on remaining java files. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@430143 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-1377-f6123eea
DERBY-1377: (Partial) - Dag's changes to sql/execute git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@429838 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/sql/execute/WriteCursorConstantAction.java", "hunks": [ { "added": [ " Licensed to the Apache Software Foundation (ASF) under one or more", " contributor license agreements. See the NOTICE file distributed with", "...
derby-DERBY-1379-e1e03892
DERBY-1379: Committed Olav's autoload.diff. This fixes the problem which caused all of the nist tests to fail when derbyall was run against jar files under jdk1.6 with the db2jcc jar in the classpath. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@412859 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/testing/org/apache/derbyTesting/functionTests/harness/RunList.java", "hunks": [ { "added": [ "import java.sql.DriverManager;", "import java.sql.SQLException;", "" ], "header": "@@ -42,6 +42,9 @@ import java.util.Enumeration;", ...
derby-DERBY-1380-7c3b39d5
DERBY-1380: Commit Dyre's derby-1380,v1.diff patch, which makes it possible to connect to Derby databases when running under build 86 of jdk1.6. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@412204 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/client/org/apache/derby/client/am/FailedProperties40.java", "hunks": [ { "added": [ "import java.util.Map;", "import java.util.HashMap;", "import java.sql.SQLClientInfoException;", "import java.sql.ClientInfoStatus;", " * <c...
derby-DERBY-1380-8a44c0f3
DERBY-1380: derby-1380.v2.diff, adding new overloads for createQueryObject(). git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@412239 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/client/org/apache/derby/client/net/NetConnection40.java", "hunks": [ { "added": [ "import java.sql.Connection;" ], "header": "@@ -28,6 +28,7 @@ import org.apache.derby.client.am.SqlException;", "removed": [] } ] }, { "file": "...
derby-DERBY-1382-5fc38c4d
DERBY-1382 lobs fail silently with result sets of type TYPE_SCROLL_INSENSITIVE in client jdbc driver. Contributed by Fernanda Pizzorno. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@414165 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/client/org/apache/derby/client/net/NetCursor.java", "hunks": [ { "added": [], "header": "@@ -128,10 +128,6 @@ public class NetCursor extends org.apache.derby.client.am.Cursor {", "removed": [ " if (hasLobs_) {", " extdtaPosi...
derby-DERBY-1386-c1bc7429
DERBY-1386: Wrong results with query using LIKE and ESCAPE clause that includes "%", "\", and "_" Queries using LIKE/ESCAPE could return wrong results if the first wildcard character was preceded by an even number of escape characters. This patch fixes the issue by changing the way Like.lessThanString() parses the pat...
[ { "file": "java/engine/org/apache/derby/iapi/types/Like.java", "hunks": [ { "added": [], "header": "@@ -852,58 +852,6 @@ public class Like {", "removed": [ "\t/**", "\t * Return the substring from the pattern for the < clause.", "\t * (NOTE: This m...
derby-DERBY-1387-5b508872
DERBY-1387 Make the registration of MBeans with JMX robust in the case of permission issues. Stops a hang in derbynet._Suite where a network server was booted with insufficient permissions for MBeans. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@636583 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/services/jmx/JMXManagementService.java", "hunks": [ { "added": [ " // Ignoring inability to create or", " // find the mbean server. MBeans can continue", " // to be registered with this ...
derby-DERBY-1387-5c4e302b
DERBY-1387 Expose an api in ManagementService to register and unregister Mbeans. Use this for a simple JDBCMBean that reports some information about the JDBC driver. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@627877 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/iapi/services/jmx/ManagementService.java", "hunks": [ { "added": [ "import org.apache.derby.iapi.error.StandardException;", "" ], "header": "@@ -17,6 +17,8 @@", "removed": [] } ] }, { "file": ...
derby-DERBY-1387-6597e569
DERBY-1387 (partial) Add a VersionMBean for the network server code. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@629278 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/drda/org/apache/derby/impl/drda/NetworkServerControlImpl.java", "hunks": [ { "added": [ "import org.apache.derby.iapi.reference.Module;", "import org.apache.derby.iapi.services.info.Version;", "import org.apache.derby.iapi.services.jmx.ManagementSe...
derby-DERBY-1387-a3ffa1e0
DERBY-1387, DERBY-3385, DERBY-3435 Add a ManagementMBeanTest which requires some refactoring of the MBeanTest to have the JMX setup moved from VersionMBeanTest. Fix VersionMBean not to have the BuildNumberAsInt attribute and rename MaintananceVersion to match the spec and the tests. git-svn-id: https://svn.apache.org/...
[ { "file": "java/engine/org/apache/derby/iapi/services/info/Version.java", "hunks": [ { "added": [ " public int getMaintenanceVersion(){" ], "header": "@@ -63,7 +63,7 @@ public class Version implements VersionMBean {", "removed": [ " public int ...
derby-DERBY-1387-c970168c
DERBY-1387 (partial) Establish a pattern of registering a Derby mbean using StandardMBean. This allows the MBean interface and implementation class to be in separate packages (and if required have unrelated names). This means the public api org.apache.derby.mbeans is not forced to contain the implementation of the MBea...
[ { "file": "java/engine/org/apache/derby/iapi/services/info/Version.java", "hunks": [ { "added": [ " Derby - Class org.apache.derby.iapi.services.info.Version" ], "header": "@@ -1,6 +1,6 @@", "removed": [ " Derby - Class org.apache.derby.mbeans.Ve...
derby-DERBY-1387-e4f7f9e7
DERBY-1387 Cleanup some details of the ManagementService api based upon feedback from John Embretsen. Mainly rename 'nameAttributes' to 'keyProperties' to match JMX terminology git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@628836 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/iapi/services/jmx/ManagementService.java", "hunks": [ { "added": [ " * The mbean will be unregistered automatically when Derby shuts down.", " * @param keyProperties The String representation of the MBean's key properties,", ...
derby-DERBY-1387-f8bc0199
DERBY-3424 (partial) Add initial apis and bean implementations for a management mbean to control Derby's JMX behaviour. Start and stop the management are present as operations but currently do nothing. Also fix a bug in DERBY-1387 where shutting down Derby would fail with jmx when multiple mbeans were registered. git-...
[ { "file": "java/engine/org/apache/derby/iapi/services/jmx/ManagementService.java", "hunks": [ { "added": [ "import org.apache.derby.iapi.reference.Module;", "import org.apache.derby.mbeans.ManagementMBean;" ], "header": "@@ -18,6 +18,8 @@", "removed"...
derby-DERBY-1392-0a625f3a
DERBY-1392, committed patch submitted by Anders Morken RAFContainer.java#writePage(...) will attempt to retry a write if an IOException is thrown on the first attempt. However, the next attempt does not add container header data to the first page, nor does it encrypt the data if the database is encrypted as the wrong...
[ { "file": "java/engine/org/apache/derby/impl/store/raw/data/RAFContainer.java", "hunks": [ { "added": [ " {", " // committed and dropped, do nothing.", " // This file container may only be a stub", "", "...
derby-DERBY-1393-054fa3a5
DERBY-1393: PreparedStatement.setObject(int,Object,int) should throw SQLFeatureNotSupportedException for unsupported types Description of the patch: The new setObject() methods call checkForSupportedDataType() to check whether targetSqlType is supported. Added a new error message "The data type ''{0}'' is not ...
[ { "file": "java/client/org/apache/derby/client/am/PreparedStatement.java", "hunks": [ { "added": [ "import org.apache.derby.shared.common.reference.JDBC40Translation;" ], "header": "@@ -20,6 +20,7 @@", "removed": [] }, { "added": [ ...
derby-DERBY-1396-00b4912a
- DERBY-1396 ReEncodedInputStream may fail to read all of source Reader - Patch by Tomohito Nakayama (tomonaka@basil.ocn.ne.jp) git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@413901 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/drda/org/apache/derby/impl/drda/ReEncodedInputStream.java", "hunks": [ { "added": [ "\t\tint count;", "\t\tdo{", "\t\t\tcount = reader.read(decodedBuffer_, 0, BUFFERED_CHAR_LEN);", "\t\t\t", "\t\t}while(count == 0);", ...
derby-DERBY-1417-16e10039
DERBY-1417 (partial) Add new, lengthless overloads to the streaming api Disable five test cases in the DerbyNetClient framework. Patch contributed by Kristian Waagan. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@423068 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-1417-57154353
DERBY-1417: Add new, lengthless overloads to the streaming api 'derby-1417-1a-notImplemented.diff' adds a number of new lengthless streaming overloads that Derby will not support. All methods added by the patch throw not-implemented exceptions. We don't support them because we either don't support the data type or bec...
[ { "file": "java/client/org/apache/derby/client/am/ResultSet.java", "hunks": [ { "added": [ " public void updateNCharacterStream(int columnIndex, Reader x)", " throws SQLException {", " throw jdbc3MethodNotSupported();", " }", ...
derby-DERBY-1417-c586481b
DERBY-1417 (partial) Add new, lengthless overloads to the streaming api Add the new overloads to the Brokered* classes and update UnsupportedVetter with the methods we support. Patch contributed by Kristian Waagan. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@423807 13f79535-47bb-0310-9956-ffa45...
[ { "file": "java/engine/org/apache/derby/iapi/jdbc/BrokeredCallableStatement40.java", "hunks": [ { "added": [ "", " public final void setNCharacterStream(String parameterName, Reader value)", " throws SQLException {", " getCallableSta...
derby-DERBY-1417-ef4a7ba6
DERBY-1417: Commit derby-1417-7a-clientborderfix.diff, fixing a hang on a border condition. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@427969 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/client/org/apache/derby/client/am/ByteArrayCombinerStream.java", "hunks": [ { "added": [ " *", " * If there is less data available than the specified length, an exception is", " * thrown. Available data is determined by the length of the byte array...
derby-DERBY-1421-cfcbbae5
DERBY-1421 updates of LOBs fails with scrollable updatable result sets. Contributed by Fernanda Pizzorno git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@418221 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-1434-34a7cbef
DERBY-1434: Client can send incorrect database name to server after having made multiple connections to different databases. Patch contributed by Julius Stroffek. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@478877 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/drda/org/apache/derby/impl/drda/DRDAConnThread.java", "hunks": [ { "added": [ " ", " // A check that the rdbnam field corresponds to a database", " // specified in a ACCRDB term.", " ...
derby-DERBY-1439-a11b0768
DERBY-1439: Remove the AntiGC thread git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1027552 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/services/monitor/BaseMonitor.java", "hunks": [ { "added": [], "header": "@@ -88,9 +88,6 @@ import java.util.NoSuchElementException;", "removed": [ "import java.security.AccessController;", "import java.security.Pr...
derby-DERBY-1440-2b22c7f1
DERBY-1440: jdk 1.6 client driver omits SQLStates and chained exceptions in error messages Follow-up patch which simplifies wrapInSQLException() and improves the comments. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@542232 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/jdbc/TransactionResourceImpl.java", "hunks": [ { "added": [ " * </PRE>" ], "header": "@@ -101,6 +101,7 @@ import java.sql.SQLException;", "removed": [] }, { "added": [ "\t/**" ]...
derby-DERBY-1440-de3b1087
DERBY-1440: jdk 1.6 client driver omits SQLStates and chained exceptions in error messages While working on DERBY-2472 I found out what caused this difference between the JDBC 3.0 driver and the JDBC 4.0 driver. There are three problems. Firstly, StandardException.unexpectedUserException() doesn't recognize that an SQ...
[ { "file": "java/engine/org/apache/derby/iapi/error/StandardException.java", "hunks": [ { "added": [ "import org.apache.derby.impl.jdbc.Util;" ], "header": "@@ -24,6 +24,7 @@ package org.apache.derby.iapi.error;", "removed": [] }, { "added":...
derby-DERBY-1443-6796671f
DERBY-1443: DataTypeDescriptor.isBinaryType() return false for Types.BLOB Adding javadoc for isBinaryType() and isCharacterType() clarifying why they return false for BLOB and CLOB. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@423827 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/iapi/types/DataTypeDescriptor.java", "hunks": [ { "added": [ "\t/**", "\t * Check whether a JDBC type is one of the character types that are", "\t * compatible with the Java type <code>String</code>.", "\t *", ...
derby-DERBY-1445-c5114100
DERBY-1445: Add new streaming overloads and modify some existing ones. Adding new (JDBC 4.0) streaming overloads to ResultSet, PreparedStatement and CallableStatement. The new overloads take a long as the length parameter. Patch contributed by V. Narayanan. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code...
[ { "file": "java/client/org/apache/derby/client/am/PreparedStatement.java", "hunks": [ { "added": [ " /**", " * sets the parameter to the Binary Stream object", " *", " * @param parameterIndex the first parameter is 1, the second is 2, ......
derby-DERBY-1445-ff7369c4
DERBY-1445: Add new streaming overloads and modify some existing ones. Fix test issues. Patch submitted by V. Narayanan. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@417705 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-1458-121b2ed0
DERBY-1458; implement a message check from the build; third attempt - rewritten as an ant-taskdef (not junit). git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@705945 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-1459-e3e3ca37
DERBY-1459: Commit bug1459_v04.diff. This introduces a dummy jdbc driver so that JDBC4 driver autoloading will play well with the engine booting which happens when the public embedded driver classloads. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@421717 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/jdbc/EmbeddedDriver.java", "hunks": [ { "added": [ "public class EmbeddedDriver implements Driver {", "\tprivate\tAutoloadedDriver\t_autoloadedDriver;", "\t" ], "header": "@@ -83,13 +83,15 @@ import org.apac...
derby-DERBY-1464-fee55d87
DERBY-578 - Grouped select from temporary table raises null pointer exception in byte code generator DERBY-1464 - runtimestatistics can show that an index is being used even when it isn't Contributed by Manish Khettry The problem is simple enough-- we didn't have a conglomerate name for temporary tables. I fixed the ...
[ { "file": "java/engine/org/apache/derby/impl/sql/compile/FromBaseTable.java", "hunks": [ { "added": [ "\t", " /* helper method used by generateMaxSpecialResultSet and", " * generateDistinctScan to return the name of the index if the ", " ...
derby-DERBY-1465-056e43e9
DERBY-1465 NetworkServerControl.start() should throw an exception and not just print exceptions if the server fails to start Backout change until changes from review comments from Dan can be incorporated. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@540809 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/drda/org/apache/derby/impl/drda/NetworkServerControlImpl.java", "hunks": [ { "added": [], "header": "@@ -161,7 +161,6 @@ public final class NetworkServerControlImpl {", "removed": [ "\t" ] }, { "added": [], "header":...
derby-DERBY-1465-36cea34a
DERBY-1465; throw an exception in addition to printing one to the log if NetworkServerControl.start() does not succeed. Committing patch .diff8 git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@729933 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/drda/org/apache/derby/impl/drda/NetworkServerControlImpl.java", "hunks": [ { "added": [], "header": "@@ -62,7 +62,6 @@ import java.util.Vector;", "removed": [ "import org.apache.derby.iapi.jdbc.DRDAServerStarter;" ] }, { "ad...
derby-DERBY-1465-928226b9
DERBY-1465; backing out changes after seeing a hang in replicationTests git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@730187 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/drda/org/apache/derby/impl/drda/NetworkServerControlImpl.java", "hunks": [ { "added": [ "import org.apache.derby.iapi.jdbc.DRDAServerStarter;" ], "header": "@@ -62,6 +62,7 @@ import java.util.Vector;", "removed": [] }, { "ad...
derby-DERBY-1465-b700deb3
DERBY-1465 NetworkServerControl.start() should throw an exception and not just print exceptions if the server fails to start git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@540789 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/drda/org/apache/derby/impl/drda/NetworkServerControlImpl.java", "hunks": [ { "added": [ "\t", "\t/** Any exception that occurs during ", "\t * start up will be saved in this variable and", "\t * thrown by the start method.", "...
derby-DERBY-1465-c38c5e1d
DERBY-1465; backing out changes of revision 718616; they cause an intermittent hang. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@722639 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/drda/org/apache/derby/impl/drda/NetworkServerControlImpl.java", "hunks": [ { "added": [], "header": "@@ -232,7 +232,6 @@ public final class NetworkServerControlImpl {", "removed": [ "\tprivate Exception runtimeException=null;" ] }, ...
derby-DERBY-1465-db233518
DERBY-1465; NetworkServerControl.start() should throw an exception - not just print an exception - if the server fails to start Patch initially contributed by Kathey Marsden. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@718616 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/drda/org/apache/derby/impl/drda/NetworkServerControlImpl.java", "hunks": [ { "added": [ "\tprivate Exception runtimeException=null;" ], "header": "@@ -232,6 +232,7 @@ public final class NetworkServerControlImpl {", "removed": [] }, ...
derby-DERBY-147-be7f461b
DERBY-147: ERROR 42x79 if specify same column twice and use ORDER BY This patch contributed by Bernd Ruehlicke (apache@priwall.org) This patch changes the getOrderByColumn method in ResultColumnList so that it uses ResultColumn.isEquivalent to determine whether the column specified in the ORDER BY clause is ambiguous...
[ { "file": "java/engine/org/apache/derby/impl/sql/compile/ResultColumnList.java", "hunks": [ { "added": [ " /*", " * A comment on 'orderBySelect'. When we encounter a SELECT .. ORDER BY", " * statement, the columns (or expressions) in the ORDER BY clause...
derby-DERBY-1476-dbbf9ff1
DERBY-1476: PreparedStatement.setNull(int,int) should throw SQLFeatureNotSupportedException for unsupported types derby-1476-v1.diff adds a call to checkForSupportedDataType() in setNull(). It also moves that call in setObject() after 'if (obj == null) { setNull(pos, type); return; }' in order to avoid double checking...
[ { "file": "java/client/org/apache/derby/client/am/PreparedStatement.java", "hunks": [ { "added": [ " checkForSupportedDataType(jdbcType);" ], "header": "@@ -408,6 +408,7 @@ public class PreparedStatement extends Statement", "removed": [] }, ...
derby-DERBY-1478-7752cf6d
This patch is for DERBY-2524 (DataTypeDescriptor(DTD) needs to have collation type and collation derivation. These new fields will apply only for character string types. Other types should ignore them.) and it does following 2 things 1)Add collation type and collation derivation attributes and apis to TypeDescriptor i...
[ { "file": "java/engine/org/apache/derby/catalog/TypeDescriptor.java", "hunks": [ { "added": [ "\t/**", "\t For a character string type, the collation derivation should always be ", "\t \"explicit\"(not possible in Derby 10.3), \"implicit\" or \"none\". We will "...
derby-DERBY-1478-869152fa
DERBY-2335 Made changes such that rather than having a new method in BaseTypeCompiler to push the DVD on the stack at code generation time, we use the existing method that accomplishes the same task in ExpressionClassBuilder. The junit tests have run fine with these changes and the stack trace experienced by Army in DE...
[ { "file": "java/engine/org/apache/derby/iapi/sql/compile/TypeCompiler.java", "hunks": [ { "added": [ "import org.apache.derby.impl.sql.compile.ExpressionClassBuilder;" ], "header": "@@ -25,6 +25,7 @@ import org.apache.derby.iapi.services.loader.ClassFactory;", ...
derby-DERBY-1478-96a630c7
Submitting a patch (DERBY2524_Collation_Info_In_DTD_v2_diff.txt) attached to DERBY-2524. This is a followup to the earlier commited patch (DERBY2524_Collation_Info_In_DTD_v1_diff.txt svn revision 525568) svn stat -q M java\engine\org\apache\derby\iapi\types\DataTypeDescriptor.java M java\engine\org\apache\d...
[ { "file": "java/engine/org/apache/derby/catalog/TypeDescriptor.java", "hunks": [ { "added": [], "header": "@@ -46,31 +46,6 @@ public interface TypeDescriptor", "removed": [ "\t/**", "\t For a character string type, the collation derivation should always be ...
derby-DERBY-1481-1b7b14f6
DERBY-1481: Client driver: ResultSet.beforeFirst() gives protocol error on scrollable, updatable result sets that are downgraded to read-only When the result set is downgraded from updatable to read-only because the query generating the result set cannot produce an updatable result set, the result set will be downgrad...
[]
derby-DERBY-1482-0be8cb53
DERBY-1482 This commit adds a new test case which creates a table with LOB column and insets large data into that column. There is a trigger defined on this table but the trigger does not need access to the LOB column. In 10.8 and prior releases, even though we don't need the LOB column to execute the trigger, we stil...
[]
derby-DERBY-1482-168be4e5
DERBY-1482 / DERBY-5121 Rick Hillegas contributed a very exhaustive trigger test which I am converting to junit and adding to the upgrade suite // The test exhaustively walks through all subsets and permutations // of columns for a trigger which inserts into a side table based on // updates to a master t...
[]
derby-DERBY-1482-3b2562cf
DERBY-1482: Fixed JavaDoc warnings (introduced in r915177). git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@915310 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-1482-56bebbea
DERBY-5121 Data corruption when executing an UPDATE trigger With the earlier checkin for DERBY-5121, DERBY-1482 changes weren't completely backed out on trunk and 10.7. We have backed out the code for the triggers so that now triggers look for the columns in their actual column positions at execution time. But DERBY...
[]
derby-DERBY-1482-6f271b4b
DERBY-1482/DERBY-5121 Rick Hillegas contributed a trigger test for DERBY-1482/DERBY-5121. With revision 1125453, that test was added to Changes10_8 but this test really is applicable for upgrades from all releases and should not be added into a specific version upgrade test. As a result, I am moving the test from Chan...
[]
derby-DERBY-1482-c1193bf7
DERBY-5121 Data corruption when executing an UPDATE trigger Committing changes to back out DERBY-1482 out of trunk(10.8 codeline). The changes have already been backed out of 10.7). In addition to engine code backport, it will also disable the tests that were added for DERBY-1482. With DERBY-1482, these tests would n...
[ { "file": "java/engine/org/apache/derby/impl/sql/catalog/DataDictionaryImpl.java", "hunks": [ { "added": [ "\t\t// DERBY-1482 has caused a regression which is being worked", "\t\t// under DERBY-5121. Until DERBY-5121 is fixed, we want", "\t\t// Derby to create tri...
derby-DERBY-1482-c4728eba
DERBY-1482 (Update triggers on tables with blob columns stream blobs into memory even when the blobs are not referenced/accessed.) Reduced the size of LOBs in the test to 50MB since junit-lowmem gets run with 16MB and hence no need to read unnecessarily larger LOB(the test was testing with 300MB lobs). Also, some su...
[]
derby-DERBY-1482-d9d1bc8e
DERBY-1482 Update triggers on tables with blob columns stream blobs into memory even when the blobs are not referenced/accessed. This commit ensures that we read only the necessary columns during triggering sql's execution rather than read all the columns from the trigger table just be cause there is a trigger define...
[ { "file": "java/engine/org/apache/derby/impl/sql/catalog/DataDictionaryImpl.java", "hunks": [ { "added": [ "\t\t// If we are dealing with database created in 10.8 and prior,", "\t\t// then we must be in soft upgrade mode. For such databases,", "\t\t// we want to g...
derby-DERBY-1482-df731e99
DERBY-5121 Data corruption when executing an UPDATE trigger Changes made for DERBY-1482 caused corruption which is being worked under DERBY-5121. The issue is that the generated trigger action sql could be looking for columns (by positions, not names) in incorrect positions. With DERBY-1482...
[]
derby-DERBY-1484-14cec7cc
DERBY-1484: Client and embedded behave differently when the table name is null in DatabaseMetaData methods. Patch file: DERBY-1484-4_ExcFact.diff Patch contributed by Jørgen Løland. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@537882 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/engine/org/apache/derby/impl/jdbc/EmbedDatabaseMetaData.java", "hunks": [ { "added": [ "import org.apache.derby.iapi.reference.SQLState;" ], "header": "@@ -37,6 +37,7 @@ import org.apache.derby.iapi.error.StandardException;", "removed": [] ...
derby-DERBY-1489-ee5857f3
DERBY-1489: Provide ALTER TABLE DROP COLUMN functionality This patch provides support for ALTER TABLE t DROP COLUMN c. The patch modifies the SQL parser so that it supports statements of the form: ALTER TABLE t DROP [COLUMN] c [CASCADE|RESTRICT] If you don't specify CASCADE or RESTRICT, the default is CASCADE. I...
[ { "file": "java/engine/org/apache/derby/iapi/sql/dictionary/SPSDescriptor.java", "hunks": [ { "added": [ "\t\t\tcase DependencyManager.DROP_COLUMN_RESTRICT:" ], "header": "@@ -908,6 +908,7 @@ public class SPSDescriptor extends TupleDescriptor", "removed": [] ...
derby-DERBY-149-cd24ce30
DERBY-149 Fix Server hang when invalid string is bound to datetime columns. Changes network server to skip only the current DSS and not all chained DSS's when parsing parameter data in SQLDTA. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@291721 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/testing/org/apache/derbyTesting/functionTests/util/TestUtil.java", "hunks": [ { "added": [ "\t public static String getNameFromJdbcType(int jdbcType) {" ], "header": "@@ -439,7 +439,7 @@ public class TestUtil {", "removed": [ "\t pu...
derby-DERBY-1496-1146ea1a
DERBY-1496 - speeding up NSSecurityMechanismTest by shutting down database before bouncing server, so sleeping is not necessary. Also made methods private where possible. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@533889 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-1496-1b46090f
DERBY-1496: committing patch DERBY-1496_20070321.diff. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@521055 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/testing/org/apache/derbyTesting/junit/JDBCDataSource.java", "hunks": [ { "added": [ " // commenting out until such time as setShutdownDatabase is", " // supported by client", " //setBeanProperty(ds, \"shutdownDatabase\", \"shut...
derby-DERBY-1496-c774a1c4
DERBY-1496 - (initial checkin) Add tests that will replace the various *users* tests, as well as dataSourcePermissions* and testSecMec.java. Some test cases were moved from dataSourcePermissions(_net) to checkDataSource.java. The *AuthenticationTests can not yet be run successfully, because the junit framework'...
[]
derby-DERBY-1500-27190db9
DERBY-1500: PreparedStatement#setObject(int parameterIndex, Object x) throws SQL Exception when binding Short value in embedded mode setObject(int, Byte) is translated to setByte(int, byte) setObject(int, Short) is translated to setShort(int, short) Added test cases in jdbcapi/parameterMapping.java. git-svn-id: htt...
[ { "file": "java/engine/org/apache/derby/impl/jdbc/EmbedPreparedStatement.java", "hunks": [ { "added": [ "\t\t// Byte and Short were added to the table in JDBC 4.0." ], "header": "@@ -1201,6 +1201,7 @@ public abstract class EmbedPreparedStatement", "removed": [...
derby-DERBY-1503-4f9187ed
DERBY-1503: Make jdbc4/StatementEventsTest.junit test callable statements The patch changes StatementEventsTest the following way: 1) New methods setXA() and setCallable() which make it possible to use the same test method to test XAConnection/PooledConnection and PreparedStatement/CallableStatement. 2) Sp...
[]
derby-DERBY-151-078bb792
DERBY-151 Thread termination -> XSDG after operation is 'complete' This patch catches the exception seen by RAFContainer4 readFull/Write/full when the embedding application thread sees an interrupt, and asks the user to inspect the app to find the cause. Before this patch, the symptoms were puzzling to the user, sugge...
[ { "file": "java/engine/org/apache/derby/impl/store/raw/data/FileContainer.java", "hunks": [ { "added": [ "\t * @exception StandardException Derby Standard error policy", " throws IOException, StandardException" ], "header": "@@ -903,9 +903,10 @@ ...
derby-DERBY-151-59ff24ce
DERBY-151 Thread termination -> XSDG after operation is 'complete' Follow-up patch derby-151-followup; improves the test to also use client/server. git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@886963 13f79535-47bb-0310-9956-ffa450edef68
[]
derby-DERBY-1511-ec6fcf1f
DERBY-1511: SELECT clause without a WHERE, causes an Exception when extracting a Blob from a database Disable bulk fetching for table scans that fetch BLOB or CLOB columns, if the cursor is holdable, as the large objects in the internal buffer will not survive across transaction boundaries. git-svn-id: https://svn.a...
[ { "file": "java/engine/org/apache/derby/iapi/sql/execute/ResultSetFactory.java", "hunks": [ { "added": [ " @param disableForHoldable Whether or not bulk fetch should be disabled", " at runtime if the cursor is holdable." ], ...
derby-DERBY-1516-f433a645
DERBY-1516: Inconsistent behavior for getBytes and getSubString for embedded versus network. Contributed by Craig Russell git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@430825 13f79535-47bb-0310-9956-ffa450edef68
[ { "file": "java/client/org/apache/derby/client/am/Blob.java", "hunks": [ { "added": [ " /**", " * Returns as an array of bytes part or all of the <code>BLOB</code>", " * value that this <code>Blob</code> object designates. The byte", " * array co...