We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6c36d7 commit e6b25fcCopy full SHA for e6b25fc
1 file changed
test/resources/create_stored_procedures_mssql.sql
@@ -38,7 +38,9 @@ END;
38
DROP PROCEDURE IF EXISTS check_condition;
39
CREATE PROCEDURE check_condition
40
AS
41
-DECLARE @v_condition BIT = 1;
+BEGIN
42
+DECLARE @v_condition BIT;
43
+SET @v_condition = 1;
44
IF @v_condition = 1
45
BEGIN
46
PRINT 'Condition is true';
0 commit comments