Re: how should store get an object based on format id and collation id?

2007-04-14 Thread Mamta Satoor
I spent some time on points 1(using Monitor to get dvd directly) and 3(optimized allocation, caching some of the work.) which requires us to solve the problem of how to get the InstanceGetter to return the correct DVD for character types. Let me first briefly describe how the InstanceGetter works

Regression Test Report - tinderbox_trunk16 528760 - Sun DBTG

2007-04-14 Thread Ole . Solberg
[Auto-generated mail] *tinderbox_trunk16* 528760/2007-04-14 06:42:25 CEST Failed TestsOK Skip Duration Suite --- *Jvm: 1.6* SunOS-5.10_i86pc-i386 0346346 095.83% derbyall F:8,E:073947386 0

[jira] Resolved: (DERBY-2492) convert checkDataSource, checkDataSource30 and checkDriver.java to junit

2007-04-14 Thread Myrna van Lunteren (JIRA)
[ https://issues.apache.org/jira/browse/DERBY-2492?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Myrna van Lunteren resolved DERBY-2492. --- Resolution: Fixed Fix Version/s: 10.3.0.0 convert checkDataSource,

Regression Test Report - Daily 528540 - Sun DBTG

2007-04-14 Thread Henri . Vandescheur
[Auto-generated mail] *Daily* 528540/2007-04-13 18:00:28 CEST Failed TestsOK Skip Duration Suite --- *Jvm: 1.6* lin 0346346 077.91% derbyall F:9,E:8836823585 0 543.56% suitesAll sles

[jira] Commented: (DERBY-1623) Add ANSI TRIM implementation

2007-04-14 Thread Manish Khettry (JIRA)
[ https://issues.apache.org/jira/browse/DERBY-1623?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12488871 ] Manish Khettry commented on DERBY-1623: --- Andrew, I am going by snippets of the spec posted in this bug. I did

Re: how should store get an object based on format id and collation id?

2007-04-14 Thread Daniel John Debrunner
Mamta Satoor wrote: I spent some time on points 1(using Monitor to get dvd directly) and 3(optimized allocation, caching some of the work.) which requires us to solve the problem of how to get the InstanceGetter to return the correct DVD for character types. Let me first briefly describe how

Re: it looks like the public posting web site for test results from IBM is broken

2007-04-14 Thread Jean T. Anderson
Since http://people.apache.org/~fuzzylogic/derby_test_results/ is out of date, should the link to it on http://db.apache.org/derby/derby_tests.html be removed? The link could be added back if/when the info gets updated. I'm happy to remove the link; just let me know. -jean Myrna van Lunteren

[jira] Commented: (DERBY-1623) Add ANSI TRIM implementation

2007-04-14 Thread Andrew McIntyre (JIRA)
[ https://issues.apache.org/jira/browse/DERBY-1623?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12488898 ] Andrew McIntyre commented on DERBY-1623: Hi Manish, You are of course correct, any expression that returns

Re: how should store get an object based on format id and collation id?

2007-04-14 Thread Mamta Satoor
Hi Dan, The problem we are trying to solve is provide a way to Store so that it can call a method (say it's called getInstanceGetterForFormatIDandCollationType) on DVF with format id collation type and get an InstanceGetter for that combination. Like Mike mentioned in his earlier mail (in this

Re: it looks like the public posting web site for test results from IBM is broken

2007-04-14 Thread Mike Matrigali
Jean T. Anderson wrote: Since http://people.apache.org/~fuzzylogic/derby_test_results/ is out of date, should the link to it on http://db.apache.org/derby/derby_tests.html be removed? The link could be added back if/when the info gets updated. I'm happy to remove the link; just let me know.

Re: how should store get an object based on format id and collation id?

2007-04-14 Thread Daniel John Debrunner
Mamta Satoor wrote: Hi Dan, The problem we are trying to solve is provide a way to Store so that it can call a method (say it's called getInstanceGetterForFormatIDandCollationType) on DVF with format id collation type and get an InstanceGetter for that combination. Why use

Re: how should store get an object based on format id and collation id?

2007-04-14 Thread Mamta Satoor
Hi Dan, Here are my attempts to answers your questions. Why use InstanceGetter here? Because Store wants to call the InstanceGetter once and call getInstance on them multiple times. This is for efficiency reasons. This is what is currently done but through interfaces on Monitor rather than DVF.