Bug 114124 - Persistence should allow '<propname> in :list' to accept an array of values
Summary: Persistence should allow '<propname> in :list' to accept an array of values
Keywords:
Status: CLOSED WONTFIX
Alias: None
Product: Red Hat Web Application Framework
Classification: Retired
Component: persistence
Version: nightly
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: ccm-bugs-list
QA Contact: Jon Orris
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2004-01-22 20:08 UTC by Daniel Berrangé
Modified: 2007-04-18 17:02 UTC (History)
0 users

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2006-09-02 17:31:50 UTC
Embargoed:


Attachments (Terms of Use)

Description Daniel Berrangé 2004-01-22 20:08:04 UTC
Description of problem:
BigDecimal[] srcIDs = ...

DomainCollection terms = domain.getTerms();
terms.addEqualsFilter("model.related.link.relationType", "related");
terms.addFilter("model.related.id in :ids").set("ids", srcIDs);


When this runs it dies with

com.arsdigita.util.WrappedError: SQL error binding [3] to
[Ljava.math.BigDecimal;@53be3972
(root cause: The table for [Ljava.math.BigDecimal; is not in the database.
Contact the DBA, as the database is in an inconsistent state.)
	at
com.redhat.persistence.engine.rdbms.SQLWriter.bind(SQLWriter.java(Compiled
Code))
	at
com.redhat.persistence.engine.rdbms.RDBMSEngine.execute(RDBMSEngine.java:481)
	at
com.redhat.persistence.engine.rdbms.RDBMSEngine.execute(RDBMSEngine.java:430)
	at
com.redhat.persistence.engine.rdbms.RDBMSEngine.execute(RDBMSEngine.java:261)
	at
com.redhat.persistence.engine.rdbms.RDBMSEngine.execute(RDBMSEngine.java:252)
	at com.redhat.persistence.Cursor.execute(Cursor.java(Inlined Compiled
Code))
	at com.redhat.persistence.Cursor.next(Cursor.java(Compiled Code))
	at
com.arsdigita.persistence.DataQueryImpl.next(DataQueryImpl.java(Compiled
Code))
	at com.arsdigita.domain.DomainQuery.next(DomainQuery.java(Compiled Code))
	at
com.arsdigita.aplaws.ui.ItemCategoryPicker.getRelatedTerms(ItemCategoryPicker.java:126)


So instead I have to stuff the elements in the BigDecimal[] into an
ArrayList and pass that it

Version-Release number of selected component (if applicable):


How reproducible:


Steps to Reproduce:
1.
2.
3.
  
Actual results:
Exception thrown

Expected results:
Query runs as expected

Additional info:

Comment 1 Daniel Berrangé 2006-09-02 17:31:50 UTC
Closing old tickets



Note You need to log in before you can comment on or make changes to this bug.