I have an apache phoenix sequence field which is defind as:
CREATE SEQUENCE ID.COUNT;
When i insert data by sqlline.py, then, the COUNT start from 1.
if i insert data by JDBC template, the COUNT will start from 101, 201. It automatically append 01 at the end of the COUNT.
How can i fix this issue?