I have a two classes:
Employee (contains position and tasks) that extends Person (contains name,
id and a timestamp).

The OQL query:

SELECT count(*) FROM castordemo.bdo.Employee e WHERE e.name LIKE $1

is translated into the SQL statement:

SELECT COUNT(*) FROM "EMPLOYEE" WHERE ("PERSON"."NAME" LIKE ?)

i.e. the join of employee and person is missing.
Any idea where to fix it? I'm using a CVS snapshot from march so it already
contained some fixed regarding 'extends'.

Thanks,
Stephan Merker

----------------------------------------------------------- 
If you wish to unsubscribe from this mailing, send mail to
[EMAIL PROTECTED] with a subject of:
        unsubscribe castor-dev

Reply via email to