This is an automated email from the ASF dual-hosted git repository. gstein pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/steve.git
commit 6227d5cfb0348482f8d998c2a985753e2112fd68 Author: Greg Stein <[email protected]> AuthorDate: Sat Oct 4 02:38:54 2025 -0500 again ... simplify. use default NULL --- v3/queries.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v3/queries.yaml b/v3/queries.yaml index 6bc95e0..9f32d7b 100644 --- a/v3/queries.yaml +++ b/v3/queries.yaml @@ -36,7 +36,7 @@ election: kv=excluded.kv c_delete_issue: DELETE FROM issue WHERE iid = ? c_add_vote: INSERT INTO vote VALUES (NULL, ?, ?) - c_add_mayvote: INSERT INTO mayvote (pid, iid, salt) VALUES (?, ?, NULL) + c_add_mayvote: INSERT INTO mayvote (pid, iid) VALUES (?, ?) c_add_mayvote_all: | INSERT INTO mayvote (pid, iid) SELECT ?, iid FROM issue WHERE eid = ?
