We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
seq
0
INSERT OR REPLACE INTO
Reproduction:
sqlite> create table foo (id int not null primary key, text text, text2 text, num int, num2 int); sqlite> select crsql_as_crr('foo'); OK sqlite> insert into foo values (1, 'foo', 'bar', 2, 3); sqlite> .mode col sqlite> select * from foo__crsql_clock; key col_name col_version db_version site_id seq --- -------- ----------- ---------- ------- --- 1 num 1 1 0 2 1 num2 1 1 0 3 1 text 1 1 0 0 1 text2 1 1 0 1 sqlite> insert or replace into foo values (1, 'foo2', 'bar2', 4, 5); sqlite> select * from foo__crsql_clock; key col_name col_version db_version site_id seq --- -------- ----------- ---------- ------- --- 1 num 2 2 0 3 1 num2 2 2 0 4 1 text 2 2 0 1 1 text2 2 2 0 2
db_version 2 does not have a seq with a value of 0.
db_version
2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Reproduction:
db_version
2
does not have aseq
with a value of0
.The text was updated successfully, but these errors were encountered: