0 votes
in Apache Phoenix by
Apache Phoenix supports array type only.

Select the correct answer from below options:

a) False

b) True

1 Answer

0 votes
by

Correct answer of the above question is : -b) True

The Apache Phoenix 3.0/4.0 release introduces support for the JDBC ARRAY type. Any primitive type may be used in an ARRAY. Here is an example of declaring an array type when creating a table:

CREATE TABLE regions (
    region_name VARCHAR NOT NULL PRIMARY KEY,
    zips VARCHAR ARRAY[10]);

Related questions

0 votes
asked Nov 1, 2021 in Apache Phoenix by john ganales
0 votes
asked Nov 1, 2021 in Apache Phoenix by john ganales
...