From 578aeece5ffea8f073677271c1363635c97695a1 Mon Sep 17 00:00:00 2001 From: Jonathan Shi Date: Mon, 4 May 2026 11:01:59 -0700 Subject: [PATCH] add skip --- tests/integ/test_bind_variable.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/integ/test_bind_variable.py b/tests/integ/test_bind_variable.py index b3959de32c..f9db2f67da 100644 --- a/tests/integ/test_bind_variable.py +++ b/tests/integ/test_bind_variable.py @@ -479,6 +479,10 @@ def proc_name(session): return name +@pytest.mark.skipif( + IS_IN_STORED_PROC, + reason="SNOW-3454682: connector issue in stored procedures breaks this test", +) class TestCallIdentifierBinding: """ SNOW-3061745: Bindings in CALL previously were not properly transferred through the expression tree.