Re: [jira] Commented: (DERBY-239) Need a online backup feature that does not block update operations when online backup is in progress.

2006-01-04 Thread Øystein Grøvlen
Suresh, Just a reminder of some things you promised to fix in the previous review round. -- Øystein ST == Suresh Thalamati [EMAIL PROTECTED] writes: ... RawStore.java: * The BACKUP_FILTER now contains so much, that it would be useful to have a comment that says what is

[jira] Commented: (DERBY-710) Building the documentation as pdf stops with OutOfMemoryError

2006-01-04 Thread Halley Pacheco de Oliveira (JIRA)
[ http://issues.apache.org/jira/browse/DERBY-710?page=comments#action_12361734 ] Halley Pacheco de Oliveira commented on DERBY-710: -- Problem solved with: ANT_OPTS=-Xms100m -Xmx200m I was using ant pdf.ref and getting: map2pdf:

[jira] Created: (DERBY-793) 'trunk/README' should be rewritten to reflect graduation from incubation

2006-01-04 Thread Kristian Waagan (JIRA)
'trunk/README' should be rewritten to reflect graduation from incubation Key: DERBY-793 URL: http://issues.apache.org/jira/browse/DERBY-793 Project: Derby Type: Task Components: Documentation

[jira] Created: (DERBY-794) setObject(col, BigDecimal, Types.NUMERIC) implies setObject(col, BigDecimal, Types.NUMERIC, 0)

2006-01-04 Thread Bernt M. Johnsen (JIRA)
setObject(col, BigDecimal, Types.NUMERIC) implies setObject(col, BigDecimal, Types.NUMERIC, 0) -- Key: DERBY-794 URL: http://issues.apache.org/jira/browse/DERBY-794 Project: Derby

Re: new uses for basic services cache - looking for advice

2006-01-04 Thread Øystein Grøvlen
MM == Mike Matrigali [EMAIL PROTECTED] writes: MM I believe the store's file container cache would benefit from the following: MM o ability to insert duplicate key items into the cache This will require a new CacheManager implementation since the current implementation (Clock) extends

[jira] Created: (DERBY-795) After calling ResultSet.relative(0) the cursor looses its position

2006-01-04 Thread Andreas Korneliussen (JIRA)
After calling ResultSet.relative(0) the cursor looses its position -- Key: DERBY-795 URL: http://issues.apache.org/jira/browse/DERBY-795 Project: Derby Type: Bug Versions: 10.1.2.1 Environment:

[jira] Created: (DERBY-796) jdbc 4.0 specific Blob and Clob method support

2006-01-04 Thread V.Narayanan (JIRA)
jdbc 4.0 specific Blob and Clob method support --- Key: DERBY-796 URL: http://issues.apache.org/jira/browse/DERBY-796 Project: Derby Type: New Feature Components: JDBC Versions: 10.2.0.0 Environment: jdbc 4.0

[jira] Assigned: (DERBY-796) jdbc 4.0 specific Blob and Clob method support

2006-01-04 Thread V.Narayanan (JIRA)
[ http://issues.apache.org/jira/browse/DERBY-796?page=all ] V.Narayanan reassigned DERBY-796: - Assign To: V.Narayanan jdbc 4.0 specific Blob and Clob method support -- Key: DERBY-796

[jira] Updated: (DERBY-796) jdbc 4.0 specific Blob and Clob method support

2006-01-04 Thread V.Narayanan (JIRA)
[ http://issues.apache.org/jira/browse/DERBY-796?page=all ] V.Narayanan updated DERBY-796: -- Attachment: clobblob.diff DETAILS OF PATCH Patch addresses the following issues 1)Modifications to the ClientJDBCObjectFactory class and the incorporation of the

[jira] Created: (DERBY-797) ResultSet.getBinaryStream() fails to read chunks of size 32k

2006-01-04 Thread Stefan Guggisberg (JIRA)
ResultSet.getBinaryStream() fails to read chunks of size 32k -- Key: DERBY-797 URL: http://issues.apache.org/jira/browse/DERBY-797 Project: Derby Type: Bug Components: JDBC Versions: 10.1.2.1

Re: DRDA product identifier

2006-01-04 Thread Rick Hillegas
These changes are now reflected on the Open Group website: http://www.opengroup.org/dbiop/prodid.htm. The website states that Derby owns the DNC and CSS product namespaces and that as long as Cloudscape shares these product ids, Cloudscape will behave compatibly. Regards, -Rick Daniel John

[jira] Commented: (DERBY-797) ResultSet.getBinaryStream() fails to read chunks of size 32k

2006-01-04 Thread Stefan Guggisberg (JIRA)
[ http://issues.apache.org/jira/browse/DERBY-797?page=comments#action_12361762 ] Stefan Guggisberg commented on DERBY-797: - please resolve this issue as INVALID. the code in question is absolutely correct. i was wrong about the semantics of

Re: Debugging StackOverflowError

2006-01-04 Thread John Embretsen
David Van Couvering wrote: - Anybody know how to track down a StackOverflowError that won't give you a stack trace? This may not be of much help, but: I don't know which java version you are using, but the newest Mustang (Java SE 6) snapshot release ( https://mustang.dev.java.net/ ) might

Re: new uses for basic services cache - looking for advice

2006-01-04 Thread Mike Matrigali
it is ugly, but a way to store duplicate keys in a hash table is to store lists as the object in the hash table rather than the object itself. For instance in the store/lang interface where store returns a hash table with a requested result set, if duplicates are allowed it stores the object if

[jira] Commented: (DERBY-791) Expose api for printing Abstract Syntax Trees in production (non-debug) servers

2006-01-04 Thread Daniel John Debrunner (JIRA)
[ http://issues.apache.org/jira/browse/DERBY-791?page=comments#action_12361765 ] Daniel John Debrunner commented on DERBY-791: - I was thinking about something similar over the holiday period. I don't think the current mechanism should be used,

[jira] Commented: (DERBY-794) setObject(col, BigDecimal, Types.NUMERIC) implies setObject(col, BigDecimal, Types.NUMERIC, 0)

2006-01-04 Thread Daniel John Debrunner (JIRA)
[ http://issues.apache.org/jira/browse/DERBY-794?page=comments#action_12361768 ] Daniel John Debrunner commented on DERBY-794: - Why is this a bug, it's the defined behaviour for setObject? setObject(col, BigDecimal, Types.NUMERIC) implies

[jira] Resolved: (DERBY-797) ResultSet.getBinaryStream() fails to read chunks of size 32k

2006-01-04 Thread Daniel John Debrunner (JIRA)
[ http://issues.apache.org/jira/browse/DERBY-797?page=all ] Daniel John Debrunner resolved DERBY-797: - Resolution: Invalid Invalid as Stefan says, since InputStream.read() is not guaranteed to fill the buffer. ResultSet.getBinaryStream()

Re: [PATCH] (DERBY-746) NullPointerException when 'encryptionKey' length is an odd number, or it contains invalid chars

2006-01-04 Thread Sunitha Kambhampati
Kristian Waagan wrote: Hello, I just uploaded a patch for DERBY-746 (http://issues.apache.org/jira/browse/DERBY-746). It would be nice if someone could spare the time to review it so it can be committed soon. The patch fixes the problem of Derby failing with a NPE when the encryption key

The derby/code/trunk/STATUS file is optional

2006-01-04 Thread Jean T. Anderson
The incubator is cleaning up web site documentation. One bit of information that emerged is a STATUS file is not required. A podling status on the incubator site *is* required -- and for a while there was some confusion about what to have and where. Here's the most succinct post:

Re: [jira] Commented: (DERBY-239) Need a online backup feature that does not block update operations when online backup is in progress.

2006-01-04 Thread Suresh Thalamati
Øystein Grøvlen wrote: Suresh, Just a reminder of some things you promised to fix in the previous review round. Thanks for reminding. It is on my list. Just thought I can do the cleanup after I fix the major issues to make online backup work correctly. Thanks -suresh

Status of DERBY-85?

2006-01-04 Thread Susan Cline
Hi,It appears that a patch and a test case was submitted for DERBY-85, and I'm not sure if it is waiting for review, or what the status is.Does anyone know what is going on with it?Thanks,Susan

Preverify derby for J2ME device

2006-01-04 Thread Ernie Ratcliff
How do you run the preverifier on the derby.jar. I get the following error every time Error preverifying class java.lang.Class VERIFIER ERROR java/lang/Class.newInstance0()Ljava/lang/Object;: Illegal type in constant pool *.* : no such file or directory Preverify step complete

[jira] Commented: (DERBY-793) 'trunk/README' should be rewritten to reflect graduation from incubation

2006-01-04 Thread Jean T. Anderson (JIRA)
[ http://issues.apache.org/jira/browse/DERBY-793?page=comments#action_12361777 ] Jean T. Anderson commented on DERBY-793: derby/code/branches/10.1/README contains valid project info that is helpful. I suggest modifying trunk/README to replace the

[jira] Updated: (DERBY-746) NullPointerException when 'encryptionKey' length is an odd number, or it contains invalid chars

2006-01-04 Thread Kristian Waagan (JIRA)
[ http://issues.apache.org/jira/browse/DERBY-746?page=all ] Kristian Waagan updated DERBY-746: -- Attachment: derby-746a.stat derby-746a.diff Original patch (derby-746.diff) applied to trunk revision 365785. Sunhita Kambhampati pointed

Re: [PATCH] (DERBY-746) NullPointerException when 'encryptionKey' length is an odd number, or it contains invalid chars

2006-01-04 Thread Kristian Waagan
Sunitha Kambhampati wrote: Kristian Waagan wrote: Hello, I just uploaded a patch for DERBY-746 (http://issues.apache.org/jira/browse/DERBY-746). It would be nice if someone could spare the time to review it so it can be committed soon. The patch fixes the problem of Derby failing with a

[jira] Commented: (DERBY-768) Build doesnt fail inspite of presence of a bug in JDBC4.0 specific classes and setting proceed=false

2006-01-04 Thread Rick Hillegas (JIRA)
[ http://issues.apache.org/jira/browse/DERBY-768?page=comments#action_12361779 ] Rick Hillegas commented on DERBY-768: - I'm afraid this patch does not seem to fix the problem, at least when run on my environment: cygwin under XP. I ran the following

Re: [jira] Commented: (DERBY-239) Need a online backup feature that does not block update operations when online backup is in progress.

2006-01-04 Thread Suresh Thalamati
Thanks for taking time to review. My comments are in-line for some of the questions, I will respond to the other questions in another e-mail. From you comments, one issue that we are uable to come to conclusion, is what to do if a backup call is issued in a transaction that already has a

[jira] Commented: (DERBY-781) Materialize union subqueries in select list where possible to avoid creating invariant resultsets many times.

2006-01-04 Thread Satheesh Bandaram (JIRA)
[ http://issues.apache.org/jira/browse/DERBY-781?page=comments#action_12361784 ] Satheesh Bandaram commented on DERBY-781: - Thanks Jeff for your analysis. I was just getting ready to file another improvement request to make this optimization more

[jira] Updated: (DERBY-781) Materialize union subqueries in select list where possible to avoid creating invariant resultsets many times.

2006-01-04 Thread Satheesh Bandaram (JIRA)
[ http://issues.apache.org/jira/browse/DERBY-781?page=all ] Satheesh Bandaram updated DERBY-781: Comment: was deleted Materialize union subqueries in select list where possible to avoid creating invariant resultsets many times.

[jira] Commented: (DERBY-781) Materialize union subqueries in select list where possible to avoid creating invariant resultsets many times.

2006-01-04 Thread Satheesh Bandaram (JIRA)
[ http://issues.apache.org/jira/browse/DERBY-781?page=comments#action_12361785 ] Satheesh Bandaram commented on DERBY-781: - Thanks Jeff for your analysis. I was just getting ready to file another improvement request to make this optimization more

Re: The derby/code/trunk/STATUS file is optional

2006-01-04 Thread Rick Hillegas
Hi Jean, Thanks for researching this. I have to admit that a flat STATUS file seems like a fairly inexpressive way to track important facts. I'd vote for some subversion-controlled webpages linked from the top level website.(just as

Re: The derby/code/trunk/STATUS file is optional

2006-01-04 Thread Andrew McIntyre
On 1/4/06, Jean T. Anderson [EMAIL PROTECTED] wrote: At any rate, Derby can certainly have a STATUS file (and some ASF projects do), but I wanted to mention that is isn't required. There might be better ways to track and publish project status. The DB project guidelines state that the projects

[jira] Closed: (DERBY-794) setObject(col, BigDecimal, Types.NUMERIC) implies setObject(col, BigDecimal, Types.NUMERIC, 0)

2006-01-04 Thread Bernt M. Johnsen (JIRA)
[ http://issues.apache.org/jira/browse/DERBY-794?page=all ] Bernt M. Johnsen closed DERBY-794: -- Resolution: Invalid Dan is quite right. This is not a bug but defined behaviour. setObject(col, BigDecimal, Types.NUMERIC) implies setObject(col,

Re: The derby/code/trunk/STATUS file is optional

2006-01-04 Thread Jean T. Anderson
Andrew McIntyre wrote: On 1/4/06, Jean T. Anderson [EMAIL PROTECTED] wrote: At any rate, Derby can certainly have a STATUS file (and some ASF projects do), but I wanted to mention that is isn't required. There might be better ways to track and publish project status. The DB project

Re: The derby/code/trunk/STATUS file is optional

2006-01-04 Thread Jean T. Anderson
Rick Hillegas wrote: Hi Jean, Thanks for researching this. I have to admit that a flat STATUS file seems like a fairly inexpressive way to track important facts. I'd vote for some subversion-controlled webpages linked from the top level website.(just as

[jira] Updated: (DERBY-483) Error message X0X07 has incorrect property name, db2j.database.classpath instead of derby.database.classpath

2006-01-04 Thread Anders Morken (JIRA)
[ http://issues.apache.org/jira/browse/DERBY-483?page=all ] Anders Morken updated DERBY-483: Attachment: DERBY-483.patch Patch enclosed. Courtesy of vim: :/^X0X07.S=/ s/db2j.database/derby.database/ on all the localized property files under

Re: [jira] Updated: (DERBY-483) Error message X0X07 has incorrect property name, db2j.database.classpath instead of derby.database.classpath

2006-01-04 Thread Daniel John Debrunner
Anders Morken (JIRA) wrote: [ http://issues.apache.org/jira/browse/DERBY-483?page=all ] Anders Morken updated DERBY-483: Attachment: DERBY-483.patch Patch enclosed. Courtesy of vim: :/^X0X07.S=/ s/db2j.database/derby.database/ on all the

Re: [jira] Updated: (DERBY-326) Improve streaming of large objects for network server and client

2006-01-04 Thread Bryan Pendleton
TomohitoNakayama wrote: Hello. I have uploaded DERBY-326_3.patch. Thank you very much for considering my comments. I think that your most recent patch (DERBY-326_3) is quite good, but I have a few more thoughts that I wanted to share. thanks, bryan 1) It seems that

[jira] Commented: (DERBY-483) Error message X0X07 has incorrect property name, db2j.database.classpath instead of derby.database.classpath

2006-01-04 Thread Anders Morken (JIRA)
[ http://issues.apache.org/jira/browse/DERBY-483?page=comments#action_12361805 ] Anders Morken commented on DERBY-483: - Oops, forgot to update unit tests accordingly. Fixed (and tested) patch coming RSN. =) Error message X0X07 has incorrect

[jira] Updated: (DERBY-483) Error message X0X07 has incorrect property name, db2j.database.classpath instead of derby.database.classpath

2006-01-04 Thread Anders Morken (JIRA)
[ http://issues.apache.org/jira/browse/DERBY-483?page=all ] Anders Morken updated DERBY-483: Attachment: DERBY-483-2.patch New patch (DERBY-483-2.patch) includes necessary updates to function tests as well. Remaining failures seem unrelated to any

[jira] Commented: (DERBY-298) rollforward will not work correctly if the system happens to crash immediately after rollforward backup.

2006-01-04 Thread Suresh Thalamati (JIRA)
[ http://issues.apache.org/jira/browse/DERBY-298?page=comments#action_12361808 ] Suresh Thalamati commented on DERBY-298: Øystein , I reviewed the latest patch, it looks good. But I could not understand why you would need the following check ?

[jira] Created: (DERBY-798) NullPointerException booting if loaded by the bootstrap class loader and JVM returns null for bootstrap loader.

2006-01-04 Thread Daniel John Debrunner (JIRA)
NullPointerException booting if loaded by the bootstrap class loader and JVM returns null for bootstrap loader. --- Key: DERBY-798 URL:

[jira] Commented: (DERBY-768) Build doesnt fail inspite of presence of a bug in JDBC4.0 specific classes and setting proceed=false

2006-01-04 Thread V.Narayanan (JIRA)
[ http://issues.apache.org/jira/browse/DERBY-768?page=comments#action_12361813 ] V.Narayanan commented on DERBY-768: --- Thank you for looking at this one Rick. The problem seems to be cygwin specific. Applying the same patch to my workspace in the