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;