Little whine about an error message

2005-09-13 Thread Bryan Pendleton
When I mistype 'join' as 'joing', the error message that I get actually complains about the word 'left'. It ought to, in my opinion, complain about the word 'joing', since that is truly the word with the syntax error in it. ij> select * from t1 left outer joing t2 on t1.c2=t2.c1; ERROR 42X01: Syn

Beginner question about building Derby myself

2005-10-10 Thread Bryan Pendleton
Hi, I'm trying to learn how to build Derby myself, as a precursor to being able to work on bugs that concern me. As a first step, I downloaded db-derby-10.1.1.0-bin.zip and db-derby-10.1.1.0.src.zip from the Derby download site, and then I opened up the source distribution on my Red Hat Linux sys

Proposed change for DERBY-569

2005-10-10 Thread Bryan Pendleton
DERBY-569 is my current "itch", so I am exploring scratching it. Following the suggestion made by Oystein Grovlen in the comments at http://issues.apache.org/jira/browse/DERBY-569, I have been experimenting with letting derby.drda.logConnections also turn off logging of connections to the console

Re: Beginner question about building Derby myself

2005-10-10 Thread Bryan Pendleton
> For the 2904165 build - did you compile the classes with both > debug=false, and sane=false in your ant.properties ? > I suspect the 2904165 size is probably because the classes were built with debug=true > > Sunitha. Yes, you are exactly right. Re-building with debug=false in my ant.propert

Re: DERBY-516 patch and JUnit download

2005-10-13 Thread Bryan Pendleton
Thanks for raising and addressing this issue. In specifying the JUnit version, I was mimicking the way that BUILDING.txt treats Ant. I like Dan's suggestion and I'll amend the scripts accordingly. I'll also amend BUILDING.txt to say that the build succeeds with JUnit 3.8.1 but that you can prob

Little nit about the mailning lists - bad mailto: URLs for the digest versions

2005-10-13 Thread Bryan Pendleton
In the "Administrivia" section of the "digest" forms of each of the mailing lists (derby-user-digest and derby-dev-digest), there are some bad mailto: links. For example, here's a snip from the most recent issue of the derby-dev-digest: -- Administrivia: To subscribe to the digest

ClassNotFound: MalformedPatternException while running derbyall

2005-10-13 Thread Bryan Pendleton
Hi all, I've been trying to set up my build environment to learn how to build Derby and run tests. I'm working with yesterday's trunk, on a RedHat Linux machine. My build appears to complete successfully, and I get a l-o-o-n-g way through derbyall, but then I get the error below. Am I missing s

Re: Trouble with release instructions and md5sum.exe

2005-10-22 Thread Bryan Pendleton
java.io.IOException: CreateProcess: \marsden\bin\md5.ksh D:\svn\opensource\10.1/tools/release/db-derby-10.1.2.0-bin.zip error=193 I think this is Ant's (and Windows's) way of trying to tell you that "md5.ksh" is not an executable file. The task in Ant can only directly run things that are tru

Has anybody been able to reproduce Derby-614 using my script?

2005-10-24 Thread Bryan Pendleton
Hi, On Friday, I uploaded some sample data, a DDL script, and a JDBC program to reproduce bug Derby-614. Can somebody please give my script a try, and confirm whether you can or cannot reproduce the bug using this data? thanks, bryan

Re:CRLF line terminators in KSH scripts

2005-10-27 Thread Bryan Pendleton
All the ksh scripts are have CRLF line terminators and therefore don't work under unix. Is this a regression from 10.1.1.0 (previous 10.1 official release)? I don't think so. I noticed this same problem in 10.1.1.0 when I fetched it last month. bryan

Re: [VOTE] 10.1.2.0 release

2005-10-27 Thread Bryan Pendleton
I thought it was generally accepted that the .tar.gz files were intended for Unix-related platforms, and zips were intended for use with Windows. No? No, that subtlety escaped me. When I went to http://db.apache.org/derby/releases/release-10.1.1.0.cgi I didn't see anything obvious telling me

Re: [jira] Commented: (DERBY-231) "FOR UPDATE" required for updatable result set to work

2005-10-28 Thread Bryan Pendleton
> the current Derby semantics (releasing the update lock once a next() is executed), isn't very helpful. Even in read-committed isolation level, it still seems like it might be useful to be able to control the lock-mode on the current row. If I have an read-committed transaction which reads thr

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

2005-10-31 Thread Bryan Pendleton
windows allows one to partition in software, I think included in the base OS. Can someone say if linux does or not (or at least a particular version of linux). Well, Linux has an extremely powerful component called the Logical Volume Manager, which sounds like what you mean: http://www.tldp.o

Need some help with setting up my Derby development testing environment

2005-11-01 Thread Bryan Pendleton
Hi all, I'm still struggling, trying to get a configuration of my system such that I can run 'derbyall' successfully. Three questions: 1) java/testing/README.htm does not say anything about creating a database; it just says to "cd into a directory that does not have any colons or spaces in it."

Re: Need some help with setting up my Derby development testing environment

2005-11-01 Thread Bryan Pendleton
Thanks for the quick help, everybody! I am working with trunk as of a few weeks ago. I am building all the code from scratch, including building derbyTesting.jar. The builds were completely uneventful. I am running with the insane jars built by "ant buildjars". Running store/access.sql was fine.

Re: Need some help with setting up my Derby development testing environment

2005-11-01 Thread Bryan Pendleton
Myrna van Lunteren wrote: I think your problem is indeed with db2jcc. Your sysinfo reports it's version 1.0: "[/home/bpendleton/downloads/derby/db2jcc/lib/db2jcc.jar] 1.0 - (581)" I think we only support 2.4 and up with derby 10 and up. Try to download a later version if you need jcc. Ah,

Re: Need some help with setting up my Derby development testing environment

2005-11-01 Thread Bryan Pendleton
Well, I'm confused too - it's too weird. OMG! I am very embarrassed. It turns out that one of the other tools I have on my machine had copied an old version of db2jcc.jar into my $JAVA_HOME/jre/lib/ext. Removing that file solved the problem. My apologies, and thanks to Myrna for double-checki

Help interpreting derbyall_report.txt

2005-11-02 Thread Bryan Pendleton
I've now got my development environment set up properly, I think, and I've run 'derbyall' multiple times. I'm trying to interpret my results, to see if I have a successful run. I appear to have skipped some number of tests, and I appear to have two failing tests. Can somebody who's more familiar

It seems like trunk/README could be deleted at this point

2005-11-07 Thread Bryan Pendleton
The file trunk/README currently contains the following text: Derby is an effort undergoing incubation at the Apache Software Foundation (ASF), sponsored by the Apache DB project. Incubation is required of all newly accepted projects until a further review indicates that the infrastruc

Re: [VOTE] Accept patch for DERBY-569 to change the derby.drda.logConnections property to also turn off logging of connections to console.

2005-11-08 Thread Bryan Pendleton
Kathey Marsden wrote: The patch for DERBY-569 changes the derby.drda.logConnections property to also turn off logging of connections to console. Hi Kathey, Thanks for reviewing my changes. I mailed the ICLA this morning. Hopefully Apache will receive it soon. thanks, bryan

Re: PLEASE READ AND REVIEW: Proposed text for code sharing contribution

2005-11-10 Thread Bryan Pendleton
Although not included in this initial contribution, we will need to provide mechanisms to help track down and resolve mixed version issues. Possible mechanisms include: - upgrade sysinfo to use the current classloader rather than the classpath to determine version information ... I just w

Curious error trying to build derby source with JDK 1.5 on Linux (Sun JDK)

2005-11-11 Thread Bryan Pendleton
As part of preparing to work on DERBY-666 I've been setting myself up to be able to build and test Derby using JDK 1.5. I may be going about this all wrong, but here's what I did: - I've installed the Sun 1.5.0_05 JDK on my RedHat Linux system. - I set JAVA_HOME to point to my 1.5 JDK - I set

Re: Curious error trying to build derby source with JDK 1.5 on Linux (Sun JDK)

2005-11-12 Thread Bryan Pendleton
As part of preparing to work on DERBY-666 I've been setting myself up to be able to build and test Derby using JDK 1.5. You need to use JDK 1.4 to build Derby. I think I didn't make my question very clear. I already have a JDK 1.4 build environment set up for Derby, and I am able to build it

Re: [jira] Commented: (DERBY-587) Providing JDBC 4.0 support for derby

2005-11-17 Thread Bryan Pendleton
Narayanan's icla now shows up as being recorded Yay! So does mine! http://people.apache.org/~jim/committers.html#unlistedclas bryan

Re: [jira] Updated: (DERBY-499) Expose BOOLEAN datatype to end users

2005-11-21 Thread Bryan Pendleton
I have attached a thin functional specification describing expected SQL and JDBC behavior for the re-enabled BOOLEAN datatype. Are there any changes to the way that ResultSet.getBoolean() and PreparedStatement.setBoolean() work for data types *other* than the boolean data type? thanks, bryan

Any feedback on DERBY-668? Useful? Worth commiting?

2005-11-22 Thread Bryan Pendleton
Hi all, I was wondering if anybody had had a chance to take a look at the changes I proposed to fix DERBY-668. http://issues.apache.org/jira/browse/DERBY-668 Is my patch valuable? Worth committing? Promising but insufficient? If somebody could have a look and give me some feedback, I'd appreci

Re: Any feedback on DERBY-668? Useful? Worth commiting?

2005-11-22 Thread Bryan Pendleton
Hi, Brya. I'm trying to access this but JIRA looks to be down. Is this your fix around the fact that db2jcc was in the extensions directory? I was wondering if anybody had had a chance to take a look at the changes I proposed to fix DERBY-668. http://issues.apache.org/jira/browse/DERBY-668

Indentation and formatting question

2005-11-22 Thread Bryan Pendleton
I'm having trouble getting my editor set up properly to work with the Derby source code. Can somebody send me the commonly-accepted Derby source code tab-and-spacing conventions? I'm using VIM, so ideally if somebody could point me at a .vimrc that set things up "the right way"... thanks, brya

Possible new DRDA bug -- can you reproduce?

2005-11-26 Thread Bryan Pendleton
While trying to test my fixes for DERBY-614, I think I may have stumbled into an entirely unrelated DRDA protocol bug of some sort. I've backed out my changes for DERBY-614 and I still see this problem, so I don't think I've caused it; however, I might have blown it. :) Below are the steps to rep

Re: [jira] Commented: (DERBY-614) Execution failed because of a Distributed Protocol Error

2005-11-28 Thread Bryan Pendleton
Kathey Marsden (JIRA) wrote: The change looks good to me. A couple small points and a request Thanks Kathey, this is very helpful. I'll pursue these points, but I don't think it will be until next weekend; I'll let you know how it turns out. thanks, bryan

Re: Adding a class to a jar file programatically

2005-11-29 Thread Bryan Pendleton
David W. Van Couvering wrote: My Google efforts have shown me how to read a jar file, how to create and write a new jar file. I want to add a new entry to an existing jar file programatically. Anybody know how to do this? Well, jar files are just ZIPs, so you can work with ZipOutputStream an

Re: Adding a class to a jar file programatically

2005-11-29 Thread Bryan Pendleton
Oh, I see I misunderstood the question. I think in the past I have always made a copy of the jar file, added the new entry to the copy, and then renamed the files around. Sorry for the misunderstanding. bryan

Re: [jira] Commented: (DERBY-587) Providing JDBC 4.0 support for derby

2005-12-01 Thread Bryan Pendleton
> If anyone knows a way to get Ant to generate a list of files > (like the find command) that we could then filter, let me know. I'm always up for puttering around with Ant scripts. Between , , and , there's a lot of power there. Maybe you could send me some more details about what you'd exactly

Re: [jira] Commented: (DERBY-587) Providing JDBC 4.0 support for derby

2005-12-01 Thread Bryan Pendleton
It would be interesting if you can get the "derbydocs" javadoc build going using multiple nested filesets, excluding the classes listed in tools/ javadoc/derbydocs_excludes.ant, and avoid the need to copy the entire source tree to a new directory before generating the javadoc. I'm possibl

Can somebody try to reproduce this problem for me, please?

2005-12-03 Thread Bryan Pendleton
: Bryan Pendleton <[EMAIL PROTECTED]> While trying to test my fixes for DERBY-614, I think I may have stumbled into an entirely unrelated DRDA protocol bug of some sort. I've backed out my changes for DERBY-614 and I still see this problem, so I don't think I've caused it; however,

Lock table messages are truncated in Client/Server mode

2005-12-06 Thread Bryan Pendleton
messages to be returned from the Network Server to the client? thanks, bryan Original Message Subject: Lock table messages are truncated in Client/Server mode Date: Sat, 03 Dec 2005 08:42:01 -0800 From: Bryan Pendleton <[EMAIL PROTECTED]> Reply-To: Derby Discussion To: Derb

Re: Lock table messages are truncated in Client/Server mode

2005-12-06 Thread Bryan Pendleton
As an experiment, I tried commenting out the truncation logic in DRDAConnThread.buildSqlerrmc(), and instead I set maxlen to -1. Sure enough, the entire lock table string in the exception's message text gets properly written to the SQLCAXGRP, and by stepping through the code on the client side I

Re: clobber target

2005-12-06 Thread Bryan Pendleton
Andrew McIntyre wrote: I think it would be good for the clobber target to clean up the jars and other release target files or provide an alternate target for cleanup. If there are no complaints, I'll add the jars and javadoc output directories to the clobber target. Somewhat of a tangent, but

Re: clobber target

2005-12-06 Thread Bryan Pendleton
"clean" removes the contents of the build output directory only. ... "clobber" also removes generated files outside of the build output directory Thanks for the good explanation. Two follow-ups: 1) It seems like there are build products (the jars and the javadoc, at least, perhaps others?) wh

Re: clobber target

2005-12-07 Thread Bryan Pendleton
John Embretsen wrote: 2) I'm surprised by the concept of removing the class files but not removing the jar files; I have trouble thinking of situations in which I'd want to rebuild the class files but not rebuild the jars. I think some developers feel that it is more convenient to include the c

Please grant me developer access in JIRA

2005-12-07 Thread Bryan Pendleton
Hi all, May I please have developer access in JIRA so that I can assign myself to the bugs that I am working on? thanks, bryan

Is it possible that DERBY-491 and DERBY-614 are related?

2005-12-08 Thread Bryan Pendleton
I was looking through the open bugs and became interested in DERBY-491, because it seems on the surface like it might be related to DERBY-614. I tried reproducing DERBY-491, and I think I was successful, although the bug report for DERBY-491 isn't very detailed about the symptoms that I should ex

Re: Is it possible that DERBY-491 and DERBY-614 are related?

2005-12-08 Thread Bryan Pendleton
Hi Bryan, This issues are related to DSS chaining which is something separate than DERBY-614. Army made a great Wiki page on the subject. http://wiki.apache.org/db-derby/DssProtocolErrors Hi Kathey, thank you very much. I will go read Army's page to learn more. bryan

Re: Can somebody try to reproduce this problem for me, please?

2005-12-08 Thread Bryan Pendleton
Rajesh Kartha wrote: I was able to reproduce this issue with the DB2 JCC Driver (version 2.6 - (90) ). Hi Rajesh, Thank you very much for confirming this for me. I opened JIRA bug 745 to track this problem, and I will attach your simpler test case to it as well. thanks, bryan

Re: When is space allocated to a file in java?

2005-12-09 Thread Bryan Pendleton
Is it possible that a subsequent sync or subsequent write on that extended portion of the file will return an out of disk space error? I think you're looking for an analytic answer based on theory and reasoning, rather than a practical answer based on experiment, but just in case I'm wrong: ther

Re: DITA-sourced documentation - error on creating output

2005-12-11 Thread Bryan Pendleton
/root/derby/trunk/DITA-OT1.1.2.1/conductor.xml:84: The type doesn't support the nested "condition" element. ... Apache Ant version 1.6.1 compiled on February 12 2004 The ability to use '' as a nested element of '' was added in Ant 1.6.2, unfortunately, so your Ant is just slightly too old.

Re: [jira] Commented: (DERBY-614) Execution failed because of a Distributed Protocol Error

2005-12-11 Thread Bryan Pendleton
One thing I did notice that deserves followup and may be related to the intermittent hangs you have seen, is that there was a finalizeChain() call in the old file on line 6139 that seems to be missing from the new version, line 6278. This might be the source of the hang you reported for one o

Re:failure in derbynet/prepStmt.java

2005-12-12 Thread Bryan Pendleton
Also running derbyall last night, I noticed a failure on jdk 1.4.2 derbyall/derbynetmats/derbynetmats.fail:derbynet/prepStmt.java *** Start: prepStmt jdk1.4.2_03 DerbyNet derbynetmats:derbynetmats 2005 77a78 Test jira614 completed successfully -- no Distributed Protocol Except Test Failed. *

Re: Is it possible that DERBY-491 and DERBY-614 are related?

2005-12-12 Thread Bryan Pendleton
Hi Army, I've been able to reproduce the following bugs: 170, 491, 492, and 745. I am still trying to reproduce 125. I don't understand bug 529 very well, and haven't made much progress on it. Given the code reading and debugger stepping that I've done so far, I don't think that I've introduced

Re: [Derby-359]Skipping over user inserted values into GENERATED BY DEFAULT identity columns....

2005-12-15 Thread Bryan Pendleton
I would be happy if Derby can consume identity values even if current insert statement fails. For this case, some insert statements may fail when they generate a value that is already present. But subsequent inserts should pass. I wonder if the counter should be bumped to the max value on a fail

Re: Google SOC:MySQL to Derby Migration tool design question

2006-07-11 Thread Bryan Pendleton
The DdlUtils tool seems not be capable of migrating views, CHECK constraints, and stored procedures. I would like to know what do you think if DdlUtils tool can be reused for migrating the tables and Indexes, and use the DatabaseMetadata for migrating views and stored procedures? . Perhaps

Re: Language based matching

2006-07-13 Thread Bryan Pendleton
"Is there some easy Java regular expression matching function like String.matches(Collator collator, String pattern, String value)? " Here's an article from 1999 in which some person apparently decided that they needed to write such a thing themselves. Warning: the code described in this artic

Re: Optimizer patch reviews? (DERBY-781, DERBY-1357)

2006-07-13 Thread Bryan Pendleton
I posted two patches for some optimizer changes a little over a week ago: one for DERBY-781 and one for DERBY-1357. Hi Army, I have been reading your wonderful DERBY-781 document. I will give you whatever feedback I have by the end of this weekend, although I don't expect to have many substanti

Re: Revoke REFERENCES privilege and drop foreign key constraint

2006-07-13 Thread Bryan Pendleton
[ Possible re-send of this message; I've been having email problems, sorry. ] > I looked through alter table constant action to see what happens > when a user issues a drop constraint foreignkeyname and it seems > like there is lot more involved then simply calling the dat

Re: [jira] Commented: (DERBY-1466) Network Server should flush the PrintWriter after console output

2006-07-13 Thread Bryan Pendleton
Kathey Marsden commented on DERBY-1466: --- If nothing goes wrong this is just the startup and the shutdown message. I agree with your overall point, and agree that the console should flush. I just wanted to point out that I think the above is true only fo

Re: [jira] Commented: (DERBY-550) BLOB : java.lang.OutOfMemoryError with network JDBC driver (org.apache.derby.jdbc.ClientDriver)

2006-07-13 Thread Bryan Pendleton
David Van Couvering wrote: ... We should not allow any other requests to be sent to the server over this connection until the BLOB data is processed or cancelled I'm not quite sure how we would do this. What is preventing the client from, say, calling ResultSet.next(), or going off to some ot

Re: [jira] Commented: (DERBY-550) BLOB : java.lang.OutOfMemoryError with network JDBC driver (org.apache.derby.jdbc.ClientDriver)

2006-07-13 Thread Bryan Pendleton
David Van Couvering wrote: I guess what I was assuming was, if the application goes off and does something else, we can notice that and either raise an exception ("you're not done with that BLOB column yet") or flush the rest of the BLOB data, since it's obvious they won't be getting back to it

Re: DERBY-396: Drop Column dependency questions

2006-07-14 Thread Bryan Pendleton
Hi Mamta, thank you for investigating this. DROP COLUMN will also need to see if there are any privileges granted on it and if yes, then those privileges should be revoked. That makes sense to me, too. I am proposing to have the ALTER TABLE DROP COLUMN statement call the already-existing cod

Re: Problem with Policy file examples (codeBase specification)?

2006-07-15 Thread Bryan Pendleton
SYNTAX: grant codeBase "file:d:/derby/lib/-" SYNTAX:grant codeBase "file://f:/derby/lib/derby.jar" Ah, the bizarre and sad world of file scheme URLs. Dress in warm clothes and take lots of water if you want to pursue the path of knowledge in this area :) All kidding aside, file scheme

Re: [jira] Commented: (DERBY-1357) Short-circuit logic in optimizer appears to be incorrect...

2006-07-15 Thread Bryan Pendleton
So adding a test case with timeout disabled won't show the symptom, and adding it with timeout enabled will likely lead to intermittent failures on different machines. I agree. Unreliable tests can be worse than no tests at all. I'm comfortable with this decision. release note would have to

Re: DDMWriter - MAX_MARKS_NESTING - Is 10 high enough?

2006-07-18 Thread Bryan Pendleton
Hi Kathey, > I am working on an issue where the following exception occured after a > long 16hr stress run. Another possibility is that this could be DERBY-428, which has a very similar "signature". > I suppose it > could be offset for bytes, but the ensurelength(4) seems like it should > ta

ALTER TABLE review, anyone?

2006-07-31 Thread Bryan Pendleton
I'm interested in getting some feedback about whether some of my patch proposals for enhanced ALTER TABLE support are close enough to ready to be worth considering for 10.2. Specifically, I'm interested in gauging whether there are any reviewers who have enough spare cycles to be able to have a l

Re: [jira] Resolved: (DERBY-428) NetworkClient PreparedStatement.executeBatch() hangs if batch is too large (ArrayIndexOutOfBoundsException in Network Server)

2006-07-31 Thread Bryan Pendleton
> Kathey Marsden resolved DERBY-428. > -- > > I think the hang may have been related to some interaction with my > firewall software. I will post separately to derby-dev about that > as I think there may be a Network Server issue there. Hi Kathey, Did you get a

Re: [jira] Commented: (DERBY-1357) Short-circuit logic in optimizer appears to be incorrect...

2006-07-31 Thread Bryan Pendleton
I posted possible release notes to DERBY-1357 and DERBY-781. Hi Army, I just wanted to note that I read both the release notes, and the wiki page too, and I think they are quite clear and will be useful to customers when they upgrade. Thanks for putting them together! bryan

Re: Need help with XML patches (was Re: last week of 10.2 development)

2006-08-04 Thread Bryan Pendleton
Yip Ng wrote: Got my attention. I am almost done with my other jira issues so I can help review Army's XML patches. =) Thanks, Yip! I, too, am hoping to spend some time over the next few days reviewing Army's patches. Learning about this work has been on my list for a while, so I'm glad to g

DERBY-688: Is this a build problem? a CLASSPATH problem? a security problem?

2006-08-05 Thread Bryan Pendleton
Hi Army, I believe I've successfully applied the XML patches in DERBY-688 and built them using the normal build techniques that I use for Derby. When I try to run, I see the exception below. Does this indicate that I missed out a step in building somewhere? Can you identify what failed to build

Let's defer the ALTER TABLE changes to post-10.2

2006-08-05 Thread Bryan Pendleton
I want to thank all the reviewers who examined the proposed patches to DERBY-119, DERBY-1489, and DERBY-1490. They made a number of excellent comments which I need to research and address. I'm not going to have time to get these changes done in the next day or two, however, so I suggest that we s

Re: DERBY-688: Is this a build problem? a CLASSPATH problem? a security problem?

2006-08-05 Thread Bryan Pendleton
with a newer version (I'm using 2.6), the problem goes away. Does this solve the problem for you? Hi Army, Yes, switching to Xalan 2.7 and installing it as an "endorsed standard" in my JRE does indeed make the problem go away, and xml_general.sql now passes for me. Thanks for the quick respon

DERBY-688: Some review comments and feedback

2006-08-06 Thread Bryan Pendleton
Hi Army, thanks for posting the patches and for continuing the work on the XML support. I think this is going to be a great feature! Here's my feedback; hope it's useful. thanks, bryan 1) The patches read well. The comments are fantastic! The effort is greatly appreciated. 2) The patches a

Re: DERBY-688: ready for commit?

2006-08-07 Thread Bryan Pendleton
Otherwise, if any of my answers above would make you uncomfortable with committing the patches (or with approving their commit), please let me know and I will try to address your concerns. Hi Army, I am comfortable with your responses, and in my opinion the 5 patches are ready for commit. Is

Re: DERBY-688: ready for commit?

2006-08-08 Thread Bryan Pendleton
Yip Ng wrote: I think these patches are ready for commit. +1 Thanks Yip! I will proceed with committing the patches starting today. thanks, bryan

Re: Beta Announcement and encouraging user testing

2006-08-08 Thread Bryan Pendleton
after a year of development Although it's no help for the current situation, I think that one of the issues here is that our release cycle for this release is too long, and we've strayed from the "Release Early, Release Often" advice (http://catb.org/~esr/writings/cathedral-bazaar/cathedral-ba

DERBY-1649: I think this issue can be resolved and closed now

2006-08-08 Thread Bryan Pendleton
In my environment, it seems that the now-committted patch for DERBY-1649 indeed removes the Wisconsin test diff. I think that the issue can be resolved and closed and removed from the patch-available list now, yes? thanks, bryan

Re: [jira] Updated: (DERBY-688) Enhancements to XML functionality to move toward XPath/XQuery support...

2006-08-10 Thread Bryan Pendleton
A B updated DERBY-688: -- Attachment: d688_phase4_v2.patch Thanks for the quick response Army! I am intending to review and commit the phase4 and phase5 patches tonight. thanks, bryan

Re: Upcoming code convention vote

2006-08-10 Thread Bryan Pendleton
> I think that we should probably have a formal vote now This seems fine to me. I suggest reformatting the main paragraph to make it slightly more explicit that we are adopting these conventions incorporating these amendments. So I am suggesting something like this: Derby uses the "Code Convent

Re: [VOTE] Approve coding conventions for the Derby project

2006-08-11 Thread Bryan Pendleton
This is a vote to define the coding conventions for the Derby project My vote is: [+1] Adopt the coding convention described. thanks, bryan

DERBY-1032: I think "patch available" can be cleared

2006-08-15 Thread Bryan Pendleton
I think that the patches attached to this issue have been committed, and there aren't any patches awaiting review. In my opinion, there's no rush to remove the existing "frameworks" scripts, but it would be nice to see the new scripts appear in the distributions relatively soon so that people cou

DERBY-119: Considering commit; interaction with the imminent 10.2 release?

2006-08-16 Thread Bryan Pendleton
Hi, I think we're getting close to the point where DERBY-119 is ready for commit. It's been tested and reviewed by several people (thanks!) and seems to be behaving well. Here's the link for convenience: http://issues.apache.org/jira/browse/DERBY-119 However, since this is a new feature, I'm

Re: DERBY-119: Considering commit; interaction with the imminent 10.2 release?

2006-08-16 Thread Bryan Pendleton
that you could hold off committing this work until at least Monday? Not a problem; glad I checked. I will check again early next week to see where we are. thanks, bryan

Re: [jira] Commented: (DERBY-1691) jdbcapi/blobclob4BLOB.java fails under DerbyNet framework with JCC 2.6

2006-08-17 Thread Bryan Pendleton
jdbcapi/blobclob4BLOB.java fails under DerbyNet framework with JCC 2.6 Is there a download site where one can get access to the 2.6 JCC driver? I think I asked this last spring and at the time there wasn't one available. It would be nice to be able to run JCC 2.6 tests myself occasionally. tha

Re: Some committers not listed on DB "Who we are" page.

2006-08-17 Thread Bryan Pendleton
Mike Matrigali wrote: any idea how we do that? Daniel John Debrunner wrote: Could all the Derby committers please ensure their name is on the DB project page. http://db.apache.org/whoweare.html I asked about this over on general@db.apache.org, and Henning Schmiedehausen pointed me at http

Re: Some committers not listed on DB "Who we are" page.

2006-08-18 Thread Bryan Pendleton
Hi Jean, thanks for the pointers. This looks pretty straightforward. I'll try to get myself added to the site. I'm having a bit of trouble following your notes where you say: (2) I set up the ssh key and started the agent per http://www.cs.utk.edu/~england/ssh.html . In the context of

Re: drop column functionality

2006-08-21 Thread Bryan Pendleton
1. Dropping the column seems very slow for large tables. This is good to know. I don't think anybody has really experimented with this yet. Can you quantify "very slow" with some real measurements you've taken? Do you think it would be reasonable to treat this as a follow-on improvement to the D

Re: [jira] Updated: (DERBY-688) Enhancements to XML functionality to move toward XPath/XQuery support...

2006-08-21 Thread Bryan Pendleton
A B (JIRA) wrote: So this patch, d688_phase6_v1.patch, is ready for commit. Thanks Army! I intend to review and commit this change. If anyone else is reviewing it, please let me know. thanks, bryan

Re: [jira] Commented: (DERBY-688) Enhancements to XML functionality to move toward XPath/XQuery support...

2006-08-22 Thread Bryan Pendleton
Does the phase6 patch need to be applied to the 10.2 branch? Yes, that'd be great. Thanks for bringing this up--I'd forgotten about the need for this... I intend to merge the phase6 patch for DERBY-688 to the 10.2 branch in the next day or so. Rick (or anyone else), please let me know if yo

http://db.apache.org/derby/derby_downloads.html needs to be updated for 10.2

2006-08-22 Thread Bryan Pendleton
I think that the section titled "branches" on the web page http://db.apache.org/derby/derby_downloads.html needs to be updated, to reflect that there is now a 10.2 branch. I think it's as simple as adding: * 10.2 to the bullet list. thanks, bryan

derby.database.sqlAuthorization question -- usage error or bug?

2006-08-23 Thread Bryan Pendleton
I'm concerned about the effect that I saw from setting derby.database.sqlAuthorization=true in my environment. I tried making a one line change to the properties used by the altertable.sql test (see inline diff below), and then running java org.apache.derbyTesting.functionTests.harness.RunTest

DERBY-119: any objections to committing to trunk?

2006-08-23 Thread Bryan Pendleton
I propose to commit DERBY-119 to the trunk within the next week. http://issues.apache.org/jira/browse/DERBY-119 This is a new feature, and should not be merged to 10.2, but my understanding is that all the mass-merging from the trunk to 10.2 is complete and it is ok to start putting new work

Re: "Phase 7" patch for DERBY-688 posted.

2006-08-24 Thread Bryan Pendleton
I am currently reviewing the phase 7 patch and running some tests. So far, everything looks good to me; thanks for the clean patch, Army! I intend to commit this patch to the trunk this evening unless any review issues show up. I also intend to merge this patch back to the 10.2 branch. The sep

Re: [jira] Commented: (DERBY-1292) ClassCastException in ClientDriver when using CLOB columns and batch updates

2006-08-25 Thread Bryan Pendleton
Oystein Grovlen - Sun Norway wrote: Oh, I did not notice this. I tried to run batchUpdate with DerbyNetClient, but this still fails. I guess that means that beetle 5561 is still an issue Perhaps this is worthy of a JIRA issue of its own, something along the lines of: - if you run jdbcapi/

Re: are there any publicly available test results for the 10.2 branch?

2006-08-25 Thread Bryan Pendleton
In my 10.2 branch run of derbyall yesterday, the only test failure I had was blobclob4BLOB: Summary results: Test Run Started: 2006-08-24 16:08:21.0 Test Run Duration: 02:36:11 667 Tests Run 99% Pass (666 tests passed) 1% Fail (1 tests failed) 4 Suites skipped thanks, bryan

Re: [jira] Resolved: (DERBY-1533) ArrayIndexOutOfBoundsException in DDMReader, on a specific data size

2006-08-28 Thread Bryan Pendleton
I would like to close the bug, but I'm afraid I don;t have the privileges, so maybe you could do it yourself? Hi Wiktor, thanks for testing the fix! If you send a message to the derby-dev@db.apache.org mailing list, asking for "developer access to JIRA", somebody will grant you the appropriate

Re: [jira] Commented: (DERBY-1583) With grant revoke enabled, defining a trigger whose actions updates a table (from different schema) results in NPE

2006-08-30 Thread Bryan Pendleton
Mike Matrigali wrote: Bryan do you think it is a problem checking in your patch for 1583 prior to doing the 1724 research? Are you planning to commit, or are you looking for someone else to commit the patch? Hi Mike, thanks for the feedback. I don't think it would be a problem to commit the

Re: [jira] Commented: (DERBY-1583) With grant revoke enabled, defining a trigger whose actions updates a table (from different schema) results in NPE

2006-08-31 Thread Bryan Pendleton
Mike Matrigali wrote: I committed your latest patch to the trunk. Thanks Mike! bryan

Re: ALTER TABLE NULL-NOT NULL not merged WAS Re: 10.2 status

2006-09-01 Thread Bryan Pendleton
r437215 | bpendleton | 2006-08-26 12:42:02 -0700 (Sat, 26 Aug 2006) | 18 lines DERBY-119: Add ALTER TABLE option to change column from NULL to NOT NULL Why was this omitted? Probably because I suggested it should not be merged. I think this reflects my inexperience with the open source proces

Re: Options for syncing of log to disk

2006-09-01 Thread Bryan Pendleton
I also believe there is a JSR that is looking at I/O improvement to future java releases. We should get someone from Derby involved in that. This looks like it could be the JSR you're thinking of: http://jcp.org/en/jsr/detail?id=203 JSR 203 was planned to be part of JDK 1.6 but has moved to JD

Broken link on the web site "papers" page?

2006-09-01 Thread Bryan Pendleton
Hi All, On the "Resources" page of the web site, http://db.apache.org/derby/integrate/index.html, in the "Papers" section, in the "Derby Engine" subsection, there is a link entitled "Type System". The "Type System" link is a link to: http://svn.apache.org/repos/asf/db/derby/code/trunk/java/eng

Re: ALTER TABLE NULL-NOT NULL not merged WAS Re: 10.2 status

2006-09-02 Thread Bryan Pendleton
In the open source world however, by releasing the code and allowing others to use it, the more eyes syndrome means that the "testing by chance" becomes the significant factor, thus the quality increases by releasing it. I completely agree. Release early, release often, get real feedback from re

Re: 10.2 status

2006-09-04 Thread Bryan Pendleton
) | 11 lines DERBY-1583 contributed by Bryan Pendleton Hi Rick, I've merged both these changes to the 10.2 branch, and updated the Wiki page accordingly. thanks, bryan

DITA docs build problem - cannot replace ref with reftemp

2006-09-06 Thread Bryan Pendleton
I'm trying to learn how to build the docs from the DITA source, following the instructions in http://db.apache.org/derby/manuals/dita.html I think I have the tree set up correctly, and I modified the one file that I wanted to modify, and then I ran ant html.ref The system whirred and hummed f

  1   2   3   4   5   6   7   8   9   10   >