Fixed tests

This commit is contained in:
Maksim Kita 2021-12-02 13:13:58 +03:00
parent 0cba91f63d
commit 9bb0663841
2 changed files with 4 additions and 0 deletions

View File

@ -1,3 +1,5 @@
-- Tags: no-parallel
DROP FUNCTION IF EXISTS 02125_function;
CREATE FUNCTION 02125_function AS x -> 02125_function(x);
SELECT 02125_function(1); --{serverError 1};

View File

@ -1,3 +1,5 @@
-- Tags: no-parallel
DROP FUNCTION IF EXISTS 02126_function;
CREATE FUNCTION 02126_function AS x -> x;
SELECT 02126_function(1);