Re: Upsert works using /sqlline-thin.py and /sqlline.py but not in Zeppelin or other remote jdbc clients

2016-11-26 Thread Matt L
ither by turning on auto > commit on the connection or doing an explicit commit)? > > On Fri, Nov 25, 2016 at 12:20 PM Matt L wrote: > >> Hello All! >> >> Through Zeppelin I am trying to insert data into a table created by >> Phoenix: >> >> %phoenix &

Upsert works using /sqlline-thin.py and /sqlline.py but not in Zeppelin or other remote jdbc clients

2016-11-25 Thread Matt L
Hello All! Through Zeppelin I am trying to insert data into a table created by Phoenix: %phoenix create table “test" (id bigint PRIMARY KEY, “test"."ip" varchar, “test"."request_date" bigint, “test"."data" varchar) %phoenix upsert into “test" values (1, '0.0.0.0', 1, 'data') %phoenix select *