mirror of https://github.com/citusdata/citus.git
Fixing tests
parent
ac09198429
commit
77afa90abd
|
@ -875,7 +875,6 @@ BEGIN
|
||||||
RETURN $1 * $1;
|
RETURN $1 * $1;
|
||||||
END;
|
END;
|
||||||
$function$;
|
$function$;
|
||||||
SET citus.enable_metadata_sync TO OFF;
|
|
||||||
CREATE OR REPLACE FUNCTION square_func(int)
|
CREATE OR REPLACE FUNCTION square_func(int)
|
||||||
RETURNS int
|
RETURNS int
|
||||||
LANGUAGE plpgsql
|
LANGUAGE plpgsql
|
||||||
|
@ -884,7 +883,6 @@ BEGIN
|
||||||
RETURN $1 * $1;
|
RETURN $1 * $1;
|
||||||
END;
|
END;
|
||||||
$function$;
|
$function$;
|
||||||
RESET citus.enable_metadata_sync;
|
|
||||||
SELECT const_function(1), string_agg(a::character, ',') FROM t1;
|
SELECT const_function(1), string_agg(a::character, ',') FROM t1;
|
||||||
NOTICE: stable_fn called
|
NOTICE: stable_fn called
|
||||||
CONTEXT: PL/pgSQL function const_function(integer) line XX at RAISE
|
CONTEXT: PL/pgSQL function const_function(integer) line XX at RAISE
|
||||||
|
|
|
@ -459,7 +459,6 @@ RETURN $1 * $1;
|
||||||
END;
|
END;
|
||||||
$function$;
|
$function$;
|
||||||
|
|
||||||
SET citus.enable_metadata_sync TO OFF;
|
|
||||||
CREATE OR REPLACE FUNCTION square_func(int)
|
CREATE OR REPLACE FUNCTION square_func(int)
|
||||||
RETURNS int
|
RETURNS int
|
||||||
LANGUAGE plpgsql
|
LANGUAGE plpgsql
|
||||||
|
@ -468,7 +467,6 @@ BEGIN
|
||||||
RETURN $1 * $1;
|
RETURN $1 * $1;
|
||||||
END;
|
END;
|
||||||
$function$;
|
$function$;
|
||||||
RESET citus.enable_metadata_sync;
|
|
||||||
|
|
||||||
SELECT const_function(1), string_agg(a::character, ',') FROM t1;
|
SELECT const_function(1), string_agg(a::character, ',') FROM t1;
|
||||||
SELECT const_function(1), count(b) FROM t1;
|
SELECT const_function(1), count(b) FROM t1;
|
||||||
|
|
Loading…
Reference in New Issue