Open Sudheert7 opened 2 months ago
I think this change will not execute the sequence syntax and will just return a string instead:
select 'users_id_seq.currval' as "id" from dual;
"id" |
---|
users_id_seq.currval |
fixed, line 154 reverted
create sequence users_id_seq start with 1 increment by 1 nocycle cache 2;
select users_id_seq.currval,users_id_seq.nextval from dual;
Output:
CURRVAL | NEXTVAL |
---|---|
1 | 1 |
Can you please provide snippets to reproduce the issue that is being fixed in this PR? Thanks!
Due to conflict previous changes were reverted, synchronized repo. fix yajra#882