Hi folks,
I submitted PR https://github.com/apache/phoenix/pull/335
Appreciate your review.
Thanks,
Gerald
On Mon, Aug 13, 2018 at 1:10 PM, James Taylor
wrote:
> I commented on the JIRA you filed here: PHOENIX-4791. Best to keep
> discussion there.
> Thanks,
> James
>
> On Mon, Aug 13, 2018 a
I commented on the JIRA you filed here: PHOENIX-4791. Best to keep
discussion there.
Thanks,
James
On Mon, Aug 13, 2018 at 11:08 AM, Gerald Sangudi
wrote:
> Hello all,
>
> Any suggestions or pointers on the issue below?
>
> Projecting array elements works when not using joins, and does not work
Hello all,
Any suggestions or pointers on the issue below?
Projecting array elements works when not using joins, and does not work
when we use hash joins. Is there an issue with the ProjectionCompiler for
joins? I have not been able to isolate the specific cause, and would
appreciate any pointers
I spent some more time debugging this error. In the case of arrays, it
looks like there is a mismatch in column family and qualifier between
KeyValueColumnExpression and ResultTuple. As a result, tuple.get(...)
returns NULLs for array elements.
Here are the methods I reviewed:
HashJoinScanner#pro
Tested on 4.7, 4.11 & 4.14.
https://issues.apache.org/jira/browse/PHOENIX-4791
On Tue, Jun 19, 2018 at 8:10 PM Jaanai Zhang wrote:
> what's your Phoenix's version?
>
>
>
>Yun Zhang
>Best regards!
>
>
> 2018-06-20 1:02 GMT+08:00 Tulasi Paradarami
what's your Phoenix's version?
Yun Zhang
Best regards!
2018-06-20 1:02 GMT+08:00 Tulasi Paradarami :
> Hi,
>
> I'm running few tests against Phoenix array and running into this bug
> where array elements return null values when a join is involved.
Hi,
I'm running few tests against Phoenix array and running into this bug where
array elements return null values when a join is involved. Is this a known
issue/limitation of arrays?
create table array_test_1 (id integer not null primary key, arr tinyint[5]);
upsert into array_test_1 values (1001