You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by fu...@apache.org on 2004/11/22 07:56:56 UTC

svn commit: r106165 - /incubator/derby/code/trunk/CHANGES /incubator/derby/code/trunk/build.xml

Author: fuzzylogic
Date: Sun Nov 21 22:56:54 2004
New Revision: 106165

Modified:
   incubator/derby/code/trunk/CHANGES
   incubator/derby/code/trunk/build.xml
Log:
Add COPYRIGHT file to derby.jar, derbynet.jar, derbytools.jar. Update CHANGES.


Modified: incubator/derby/code/trunk/CHANGES
Url: http://svn.apache.org/viewcvs/incubator/derby/code/trunk/CHANGES?view=diff&rev=106165&p1=incubator/derby/code/trunk/CHANGES&r1=106164&p2=incubator/derby/code/trunk/CHANGES&r2=106165
==============================================================================
--- incubator/derby/code/trunk/CHANGES	(original)
+++ incubator/derby/code/trunk/CHANGES	Sun Nov 21 22:56:54 2004
@@ -1,7 +1,13 @@
 Changes in Derby 10.0.2.1
     
+ *) For Network Server, clear back to appropriate point if
+    query fails instead of clearing buffer. (Derby-5)
+    [Army Brown <ar...@golux.com>]
+
  *) Enable use of functions in triggers (Derby-6)
     [Jack Klebanoff <kl...@mutagen.net>] 
+
+ *) Triggers do not evaluate functions in VALUES trigger actions. (Derby-14)
     
  *) Method calls on a closed Connection from a PooledConnection no longer
     cause connection closed events to be sent to any listeners.
@@ -19,10 +25,29 @@
     [Suresh Thalamati <ts...@source-zone.org>]
     
  *) Allow default to be specified for CHAR FOR BIT DATA columns (Derby-34)
-    [Satheesh Bandaram <sa...@sourcery.org>]
+    [Satheesh Bandaram <sa...@sourcery.org>]
+
+ *) Fix dss chaining problems for network server. (Derby-35)
+    [Army Brown]
     
  *) LOCKS is no longer a reserved keyword (Derby-38)
-    [Mamta Satoor <ma...@remulak.net>]
+    [Mamta Satoor <ma...@remulak.net>]
+
+ *) Allow BIGINT default values in create table. (Derby-40)
+    [Satheesh Bandaram]
+
+ *) Encryption key length no longer stored in service.properties. (Derby-42)
+    [Sunitha Kambhampati <sk...@Yngvi.Org>]
+
+ *) Enable LIKE ? ESCAPE ? syntax that was disabled before (Derby-44)
+    [Satheesh Bandaram]
+
+ *) Allow expressions that result in string types as arguments to a LIKE
+    expression (Derby-45)
+    [Satheesh Bandaram]
+
+ *) Make RETAIN a non-reserved keyword (Derby-54)
+    [Satheesh Bandaram]
     
  *) Faster create database by moving DatabaseMetaData SPS creation into the 
     DataDictionary. Means creation of these statements is not logged and 
@@ -55,9 +80,9 @@
  *) Prevent empty log switches by rechecking the conditions that trigger the
     log switched in synchronized blocks, and make backward scans skip the 
     empty log files. In multi-threaded application when many threads are 
-    executing commits in parallel, empty log files might be created. Recovery
-    log scan does not expect empty log files while scanning log records to 
-    undo incomplete transactions.
+    executing commits in parallel, empty log files might be created.
+    Recovery log scan does not expect empty log files while scanning log
+    records to undo incomplete transactions.
     [Suresh Thalamati] 
     
  *) Add derby.war file
@@ -65,4 +90,17 @@
     
  *) Fix display of NetServlet messages. 
     [Lynh Nguyen <ly...@remulak.net>]
-    
+
+ *) Database Metadata now returns correct size for maximum column name
+    length, maximum schema name length, etc.
+    [Satheesh Bandaram]
+
+ *) Add static property derby.drda.keepAlive to Network Server, to set the
+    use of TCP keepalive for Network Server connections on the server side,
+    with the use of keepalive on by default.
+    [Kathey Marsden]
+
+ *) Ensure BrokeredStatement and PreparedStatement always throw a Statement
+    is closed exception if the statement is closed.
+    [Dan Debrunner]
+

Modified: incubator/derby/code/trunk/build.xml
Url: http://svn.apache.org/viewcvs/incubator/derby/code/trunk/build.xml?view=diff&rev=106165&p1=incubator/derby/code/trunk/build.xml&r1=106164&p2=incubator/derby/code/trunk/build.xml&r2=106165
==============================================================================
--- incubator/derby/code/trunk/build.xml	(original)
+++ incubator/derby/code/trunk/build.xml	Sun Nov 21 22:56:54 2004
@@ -669,7 +669,7 @@
 
     <mkdir dir="${derby.jar.dir}/lists/META-INF"/>
     <copy todir="${derby.jar.dir}/lists/META-INF">
-      <fileset dir="${basedir}" includes="LICENSE*,NOTICE*"/>
+      <fileset dir="${basedir}" includes="LICENSE*,NOTICE*,COPYRIGHT*"/>
     </copy>
 
     <!-- the next two targets are orthogonal. Only one will be executed, -->
@@ -773,7 +773,7 @@
 
     <mkdir dir="${derby.jar.dir}/lists/META-INF"/>
     <copy todir="${derby.jar.dir}/lists/META-INF">
-      <fileset dir="${basedir}" includes="LICENSE*,NOTICE*"/>
+      <fileset dir="${basedir}" includes="LICENSE*,NOTICE*,COPYRIGHT*"/>
     </copy>
 
     <delete file="${derby.jar.dir}/derbytools.jar"/>
@@ -825,7 +825,7 @@
 
     <mkdir dir="${derby.jar.dir}/lists/META-INF"/>
     <copy todir="${derby.jar.dir}/lists/META-INF">
-      <fileset dir="${basedir}" includes="LICENSE*,NOTICE*"/>
+      <fileset dir="${basedir}" includes="LICENSE*,NOTICE*,COPYRIGHT*"/>
     </copy>
 
     <delete file="${derby.jar.dir}/derbynet.jar"/>