I am beginner in using Phoenix as well as HBase.
I am unable to use UPSERT statements of phoenix with column family name for dynamic columns.
My create table statement :
CREATE TABLE TEST(
A UNSIGNED_LONG NOT NULL,
B VARCHAR NOT null,
C UNSIGNED_LONG NOT null,
CONSTRAINT rowkey PRIMARY KEY(A,B,C)
)
My upsert STATEMENT:
UPSERT INTO TEST(A,B,C,d.D INTEGER,d.E INTEGER,e.F INTEGER) VALUES (30000,alice,200000,1,1,1)
Error Message :
ERROR 1001 (42I01): Undefined column family. familyName=D.null
What am I missing here?