File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4979,7 +4979,7 @@ RETURNS TEXT AS $$
4979
4979
SELECT _are(
4980
4980
'functions',
4981
4981
ARRAY(
4982
- SELECT name FROM tap_funky WHERE schema = $1
4982
+ SELECT name FROM tap_funky WHERE schema = $1 and kind != 'p'
4983
4983
EXCEPT
4984
4984
SELECT $2[i]
4985
4985
FROM generate_series(1, array_upper($2, 1)) s(i)
@@ -4988,7 +4988,7 @@ RETURNS TEXT AS $$
4988
4988
SELECT $2[i]
4989
4989
FROM generate_series(1, array_upper($2, 1)) s(i)
4990
4990
EXCEPT
4991
- SELECT name FROM tap_funky WHERE schema = $1
4991
+ SELECT name FROM tap_funky WHERE schema = $1 and kind != 'p'
4992
4992
),
4993
4993
$3
4994
4994
);
@@ -5006,7 +5006,7 @@ RETURNS TEXT AS $$
5006
5006
SELECT _are(
5007
5007
'functions',
5008
5008
ARRAY(
5009
- SELECT name FROM tap_funky WHERE is_visible
5009
+ SELECT name FROM tap_funky WHERE is_visible and kind != 'p'
5010
5010
AND schema NOT IN ('pg_catalog', 'information_schema')
5011
5011
EXCEPT
5012
5012
SELECT $1[i]
@@ -5016,7 +5016,7 @@ RETURNS TEXT AS $$
5016
5016
SELECT $1[i]
5017
5017
FROM generate_series(1, array_upper($1, 1)) s(i)
5018
5018
EXCEPT
5019
- SELECT name FROM tap_funky WHERE is_visible
5019
+ SELECT name FROM tap_funky WHERE is_visible and kind != 'p'
5020
5020
AND schema NOT IN ('pg_catalog', 'information_schema')
5021
5021
),
5022
5022
$2
You can’t perform that action at this time.
0 commit comments