You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/cloudsync.c
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -635,7 +635,7 @@ int table_add_stmts (sqlite3 *db, cloudsync_table_context *table, int ncols) {
635
635
if (rc!=SQLITE_OK) goto cleanup;
636
636
637
637
// precompile the update rows from meta when pk changes
638
-
// see https://github.com/sqlitecloud/cloudsync/blob/main/docs/PriKey.md for more details
638
+
// see https://github.com/sqliteai/sqlite-sync/blob/main/docs/PriKey.md for more details
639
639
sql=cloudsync_memory_mprintf("UPDATE OR REPLACE \"%w_cloudsync\" SET pk=?, db_version=?, col_version=1, seq=cloudsync_seq(), site_id=0 WHERE (pk=? AND col_name!='%s');", table->name, CLOUDSYNC_TOMBSTONE_VALUE);
640
640
if (!sql) {rc=SQLITE_NOMEM; goto cleanup;}
641
641
DEBUG_SQL("meta_update_move_stmt: %s", sql);
@@ -1763,7 +1763,7 @@ int local_update_move_meta (sqlite3 *db, cloudsync_table_context *table, const c
1763
1763
* from OLD.pk to NEW.pk gets a distinct `seq` to maintain proper versioning and ordering of changes.
1764
1764
*/
1765
1765
1766
-
// see https://github.com/sqlitecloud/cloudsync/blob/main/docs/PriKey.md for more details
1766
+
// see https://github.com/sqliteai/sqlite-sync/blob/main/docs/PriKey.md for more details
0 commit comments