Bug 1316511 - OData - missing non-nullable property
Summary: OData - missing non-nullable property
Keywords:
Status: CLOSED CURRENTRELEASE
Alias: None
Product: JBoss Data Virtualization 6
Classification: JBoss
Component: Teiid
Version: 6.3.0
Hardware: Unspecified
OS: Unspecified
medium
medium
Target Milestone: ER4
: 6.3.0
Assignee: Van Halbert
QA Contact: Juraj Duráni
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2016-03-10 11:29 UTC by Juraj Duráni
Modified: 2016-08-24 11:47 UTC (History)
6 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2016-08-24 11:47:33 UTC
Type: Bug
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Red Hat Issue Tracker TEIID-4064 0 Major Closed OData - missing non-nullable property 2016-06-15 12:34:32 UTC

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


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