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


The following commit(s) were added to refs/heads/trunk by this push:
     new 5c6c325  lowercase the table name
5c6c325 is described below

commit 5c6c325e08a3ba06ad283e6b57de400aac42924a
Author: Greg Stein <[email protected]>
AuthorDate: Fri Sep 26 11:47:53 2025 -0500

    lowercase the table name
---
 v3/queries.yaml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/v3/queries.yaml b/v3/queries.yaml
index 3474f16..b6dcf4f 100644
--- a/v3/queries.yaml
+++ b/v3/queries.yaml
@@ -79,11 +79,11 @@ election:
 
 person:
     c_add_person: |
-        INSERT INTO PERSON VALUES (?, ?, ?)
+        INSERT INTO person VALUES (?, ?, ?)
         ON CONFLICT DO UPDATE SET
             name=excluded.name,
             email=excluded.email
-    c_delete_person: DELETE FROM PERSON WHERE pid = ?
+    c_delete_person: DELETE FROM person WHERE pid = ?
 
-    q_person: SELECT * FROM PERSON ORDER BY pid
-    q_get_person: SELECT * FROM PERSON WHERE pid = ?
+    q_person: SELECT * FROM person ORDER BY pid
+    q_get_person: SELECT * FROM person WHERE pid = ?

Reply via email to