Skip to content

Commit cdc9550

Browse files
committed
add missing table format param
1 parent bced109 commit cdc9550

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/src/changes-vtab-read.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ char *crsql_changesQueryForTable(crsql_TableInfo *tableInfo) {
2323
__crsql_db_version as db_vrsn,\
2424
__crsql_site_id as site_id\
2525
FROM \"%s__crsql_clock\"",
26-
tableInfo->tblName, crsql_quoteConcat(tableInfo->pks, tableInfo->pksLen));
26+
tableInfo->tblName, crsql_quoteConcat(tableInfo->pks, tableInfo->pksLen),
27+
tableInfo->tblName);
2728

2829
return zSql;
2930
}

0 commit comments

Comments
 (0)