Skip to content

Commit

Permalink
updating to include moves.show in return
Browse files Browse the repository at this point in the history
  • Loading branch information
danieljordan-caci committed Feb 7, 2025
1 parent f4ce771 commit e38c863
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,7 @@ CREATE OR REPLACE FUNCTION get_destination_queue(
)
RETURNS TABLE (
id UUID,
show BOOLEAN,
locator TEXT,
submitted_at TIMESTAMP WITH TIME ZONE,
orders_id UUID,
Expand Down Expand Up @@ -299,6 +300,7 @@ BEGIN
sql_query := '
SELECT
moves.id AS id,
moves.show AS show,
moves.locator::TEXT AS locator,
moves.submitted_at::TIMESTAMP WITH TIME ZONE AS submitted_at,
moves.orders_id AS orders_id,
Expand Down Expand Up @@ -467,6 +469,7 @@ BEGIN
sql_query := sql_query || '
GROUP BY
moves.id,
moves.show,
moves.locator,
moves.submitted_at,
moves.orders_id,
Expand Down

0 comments on commit e38c863

Please sign in to comment.