Hi Isomorphic,
could you add the following line to BuiltInDS's server.properties (v10.0p_2015-05-19):
Because without, for HSQLDB there are no outer joins generated in e.g. this case
animals.ds.xml change/addition:
This would make creating testcases involving joins way more easy.
Best regards
Blama
could you add the following line to BuiltInDS's server.properties (v10.0p_2015-05-19):
Code:
sql.useAnsiJoins: true
animals.ds.xml change/addition:
Code:
<field name="lifeSpan" title="Life Span" type="integer" foreignKey="employees.EmployeeId" joinType="outer" /> <field name="EmployeeName" includeFrom="employees.Name" />
Best regards
Blama
Comment