[teiid-issues] [JBoss JIRA] (TEIID-3324) Boolean fields with null are evaluated to false

RH Bugzilla Integration (JIRA) issues at jboss.org
Thu Feb 5 08:39:49 EST 2015


     [ https://issues.jboss.org/browse/TEIID-3324?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

RH Bugzilla Integration updated TEIID-3324:
-------------------------------------------
        Bugzilla Update: Perform
    Bugzilla References: https://bugzilla.redhat.com/show_bug.cgi?id=1189484


> Boolean fields with null are evaluated to false
> -----------------------------------------------
>
>                 Key: TEIID-3324
>                 URL: https://issues.jboss.org/browse/TEIID-3324
>             Project: Teiid
>          Issue Type: Bug
>          Components: JDBC Connector
>    Affects Versions: 7.1
>            Reporter: Salvatore R
>            Assignee: Steven Hawkins
>             Fix For: 8.10
>
>
> I have a source table defined as follows (e.g. in PostgreSQL):
> {code:sql}
> CREATE TABLE public.test  
> (  
>   id integer,  
>   iscustomer boolean  
> )  
> {code}
> and the table contains these rows:
> {code:sql}
> insert into public.test values(1, null);  
> insert into public.test values(2, true);  
> insert into public.test values(3, false);  
> {code}
>  
> When I try to get data from this table in Teiid, the "null" value is evaluated as false:
> ||id||iscustomer||
> |1|false|
> |2|true|
> |3|false|



--
This message was sent by Atlassian JIRA
(v6.3.11#6341)


More information about the teiid-issues mailing list