@@ -3354,14 +3354,14 @@ begin
3354
3354
return (select * from fufu limit 1);
3355
3355
end;
3356
3356
$$ language plpgsql volatile;
3357
- select * from plpgsql_check_function('flag_test1(int)', performance_warnings => true);
3357
+ select * from plpgsql_check_function('flag_test1(int)', performance_warnings := true);
3358
3358
plpgsql_check_function
3359
3359
-----------------------------------------------------------------------------------------
3360
3360
performance:00000:routine is marked as STABLE, should be IMMUTABLE
3361
3361
Hint: When you fix this issue, please, recheck other functions that uses this function.
3362
3362
(2 rows)
3363
3363
3364
- select * from plpgsql_check_function('flag_test2(int)', performance_warnings => true);
3364
+ select * from plpgsql_check_function('flag_test2(int)', performance_warnings := true);
3365
3365
plpgsql_check_function
3366
3366
-----------------------------------------------------------------------------------------
3367
3367
warning extra:00000:parameter "$1" is never read
@@ -3529,7 +3529,7 @@ begin
3529
3529
end;
3530
3530
$$ language plpgsql;
3531
3531
-- should not to crash
3532
- select * from plpgsql_check_function('test_crash', fatal_errors=> false);
3532
+ select * from plpgsql_check_function('test_crash', fatal_errors := false);
3533
3533
plpgsql_check_function
3534
3534
---------------------------------------------------------------------------------------------------------
3535
3535
error:42883:4:statement block:function buggyfunc(integer) does not exist
@@ -3543,7 +3543,7 @@ select * from plpgsql_check_function('test_crash', fatal_errors=>false);
3543
3543
warning extra:00000:3:DECLARE:never read variable "ec"
3544
3544
(9 rows)
3545
3545
3546
- select * from plpgsql_check_function('test_crash', fatal_errors=> true);
3546
+ select * from plpgsql_check_function('test_crash', fatal_errors := true);
3547
3547
plpgsql_check_function
3548
3548
---------------------------------------------------------------------------------------------------------
3549
3549
error:42883:4:statement block:function buggyfunc(integer) does not exist
0 commit comments