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 0f12c601cd7563c4059e5c5903b9a8a853db86c8
Author: Greg Stein <[email protected]>
AuthorDate: Fri Feb 20 02:47:24 2026 -0600

    feat: include owner_pid in q_upcoming_to_me query results
    
    Co-authored-by: aider (openrouter/x-ai/grok-code-fast-1) <[email protected]>
---
 v3/queries.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/v3/queries.yaml b/v3/queries.yaml
index 3649fd9..948d845 100644
--- a/v3/queries.yaml
+++ b/v3/queries.yaml
@@ -144,9 +144,9 @@ election:
     # ensuring elections are still returned even if the owner_pid does not
     # exist in the person table (in which case owner_name will be NULL).
     # 
-    # Returns: eid, title, authz, open_at, close_at, closed, issue_count, 
owner_name
+    # Returns: eid, title, owner_pid, authz, open_at, close_at, closed, 
issue_count, owner_name
     q_upcoming_to_me: |
-        SELECT e.eid, e.title, e.authz, e.open_at, e.close_at,
+        SELECT e.eid, e.title, e.owner_pid, e.authz, e.open_at, e.close_at,
                0 AS closed,
                COUNT(i.iid) AS issue_count,
                p.name AS owner_name

Reply via email to