Bug 1316511

Summary: OData - missing non-nullable property
Product: [JBoss] JBoss Data Virtualization 6 Reporter: Juraj Duráni <jdurani>
Component: TeiidAssignee: Van Halbert <vhalbert>
Status: CLOSED CURRENTRELEASE QA Contact: Juraj Duráni <jdurani>
Severity: medium Docs Contact:
Priority: medium    
Version: 6.3.0CC: aszczucz, blafond, jolee, mbaluch, thauser, vhalbert
Target Milestone: ER4   
Target Release: 6.3.0   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2016-08-24 11:47:33 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Juraj Duráni 2016-03-10 11:29:15 UTC
Description of problem:
DDL for tables Customer and Orders in VDB as follows:
CREATE FOREIGN TABLE Customers (
  id integer PRIMARY KEY OPTIONS (NAMEINSOURCE 'id'),
  name varchar(10)) OPTIONS (NAMEINSOURCE 'DB.PUBLIC.CUSTOMERS');
CREATE FOREIGN TABLE Orders (
  id integer PRIMARY KEY OPTIONS (NAMEINSOURCE 'id'),
  customerid integer,
  place varchar(10),
  FOREIGN KEY (customerid) REFERENCES Customers(id)) OPTIONS (NAMEINSOURCE 'DB.PUBLIC.ORDERS');

Note, that both tables have same name of primary key named "id".

Invoke GET method to URL http://localhost:8080/odata4/olingo_basic/Source/Customers/?$count=true&$expand=Orders_FK0

*Result:* The non-nullable property 'id' is missing.

Here are selected part of Teiid's log:
*Query:*
SELECT g10.id, g10.name, g11.id, g11.customerid, g11.place FROM Source.Customers AS g10 LEFT OUTER JOIN Source.Orders AS g11 ON g10.id = g11.customerid ORDER BY g10.id
*Result:*
|id|name     |id    |customerid|place  |
|--|---------|------|----------|-------|
|1 |customer1|1     |1         |town   |
|1 |customer1|2     |1         |state  |
|1 |customer1|3     |1         |country|
|1 |customer1|4     |1         |abroad |
|2 |customer2|5     |2         |state  |
|2 |customer2|6     |2         |country|
|3 |customer3|7     |3         |town   |
|3 |customer3|8     |3         |town   |
|4 |customer4|<null>|<null>    |<null> |

Comment 1 JBoss JIRA Server 2016-03-18 15:22:33 UTC
Ramesh Reddy <rareddy> updated the status of jira TEIID-4064 to Coding In Progress

Comment 2 Van Halbert 2016-03-18 18:19:58 UTC
*** Bug 1316476 has been marked as a duplicate of this bug. ***

Comment 3 JBoss JIRA Server 2016-03-21 17:03:52 UTC
Ramesh Reddy <rareddy> updated the status of jira TEIID-4064 to Resolved

Comment 4 JBoss JIRA Server 2016-04-21 06:35:09 UTC
Juraj Duráni <jdurani> updated the status of jira TEIID-4064 to Reopened

Comment 5 Juraj Duráni 2016-04-21 06:35:45 UTC
The issue has not been fixed. Teiid throws NPE.

Comment 6 JBoss JIRA Server 2016-04-25 12:54:59 UTC
Ramesh Reddy <rareddy> updated the status of jira TEIID-4064 to Resolved

Comment 7 JBoss JIRA Server 2016-06-15 12:34:33 UTC
Steven Hawkins <shawkins> updated the status of jira TEIID-4064 to Closed