Skip to content

Commit

Permalink
add missing table format param
Browse files Browse the repository at this point in the history
  • Loading branch information
tantaman committed Apr 23, 2023
1 parent bced109 commit cdc9550
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/src/changes-vtab-read.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ char *crsql_changesQueryForTable(crsql_TableInfo *tableInfo) {
__crsql_db_version as db_vrsn,\
__crsql_site_id as site_id\
FROM \"%s__crsql_clock\"",
tableInfo->tblName, crsql_quoteConcat(tableInfo->pks, tableInfo->pksLen));
tableInfo->tblName, crsql_quoteConcat(tableInfo->pks, tableInfo->pksLen),
tableInfo->tblName);

return zSql;
}
Expand Down

0 comments on commit cdc9550

Please sign in to comment.