Description
I have the following scenario:
create sequence keys;
create table X (pk unsigned_long primary key, val integer);
upsert into x values (1,1);
Followed by repeated:
upsert into x select next value for keys, val from x;
This works well until 2048 rows are inserted. The next
upsert into x select next value for keys, val from x;
That loops forever inserting more and more rows until it is stopped.
Attachments
Attachments
Issue Links
- relates to
-
PHOENIX-4849 Phoenix may incorrectly replace TableResultIterators after HBase region splits
- Closed