From b934bdda56e7423da11e7c5c489fdf8cf1adaa5d Mon Sep 17 00:00:00 2001 From: Paul Trowbridge Date: Wed, 6 Aug 2025 17:15:27 -0400 Subject: [PATCH] commit: 2025-08-06 17:15:27 --- new_targets/procs/single_price_call.ms.sql | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/new_targets/procs/single_price_call.ms.sql b/new_targets/procs/single_price_call.ms.sql index dd917c5..75c6469 100644 --- a/new_targets/procs/single_price_call.ms.sql +++ b/new_targets/procs/single_price_call.ms.sql @@ -293,6 +293,7 @@ BEGIN q.cust AS [customer], q.chan AS [channel], TRIM(q.tier) AS [tier] + -- JSON_QUERY(hist) AS [history] FOR JSON PATH, WITHOUT_ARRAY_WRAPPER ) FROM @queue q; @@ -456,5 +457,6 @@ BEGIN -------------------------------------------------------------------------------- -- Final: Return the enriched result row -------------------------------------------------------------------------------- - SELECT guidance_price, expl, ui_json FROM @queue; + --SELECT guidance_price, hist, expl, ui_json FROM @queue; + SELECT * FROM @queue; END;