mirror of
https://git.sr.ht/~cismonx/bookmarkfs
synced 2025-06-07 19:58:50 +00:00
backend_firefox: fix stmt id for keyword delete
This commit is contained in:
parent
9c0d5fb337
commit
0e20604c73
1 changed files with 1 additions and 1 deletions
|
@ -1086,7 +1086,7 @@ mozkw_delete (
|
||||||
char const *name,
|
char const *name,
|
||||||
size_t name_len
|
size_t name_len
|
||||||
) {
|
) {
|
||||||
sqlite3_stmt **stmt_ptr = &ctx->stmts[STMT_MOZKW_RENAME];
|
sqlite3_stmt **stmt_ptr = &ctx->stmts[STMT_MOZKW_DELETE];
|
||||||
char const *sql = "DELETE FROM `moz_keywords` "
|
char const *sql = "DELETE FROM `moz_keywords` "
|
||||||
"WHERE `keyword` = ? RETURNING `place_id`";
|
"WHERE `keyword` = ? RETURNING `place_id`";
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue