From 1ee36d41c6031a8f1043b90b883b63d38344ff77 Mon Sep 17 00:00:00 2001 From: Mohit Yadav <105265192+mohityadav766@users.noreply.github.com> Date: Fri, 23 May 2025 17:13:45 +0530 Subject: [PATCH] Escape ? to causing issues in jdbi binding (#21381) --- .../sql/migrations/native/1.7.1/postgres/schemaChanges.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap/sql/migrations/native/1.7.1/postgres/schemaChanges.sql b/bootstrap/sql/migrations/native/1.7.1/postgres/schemaChanges.sql index 5f145cfdc80..6c8e063ffac 100644 --- a/bootstrap/sql/migrations/native/1.7.1/postgres/schemaChanges.sql +++ b/bootstrap/sql/migrations/native/1.7.1/postgres/schemaChanges.sql @@ -26,8 +26,8 @@ SET json = jsonb_set( (json->'connection'->'config') - 'siteUrl' - 'apiVersion' - 'env' ) WHERE serviceType = 'Tableau' - AND json ? 'connection' - AND json->'connection' ? 'config'; + AND json ?? 'connection' + AND json->'connection' ?? 'config'; -- Add runtime: enabled for AutoPilot UPDATE apps_marketplace