File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -110,17 +110,17 @@ CREATE FUNCTION ns(tab regclass) RETURNS name AS $$
110
110
$$ LANGUAGE sql STABLE STRICT;
111
111
112
112
CREATE FUNCTION pk (t regclass) RETURNS name[] AS $$
113
- SELECT cols FROM meta .pk WHERE meta .pk .tab = t;
113
+ SELECT cols FROM graphql .pk WHERE graphql .pk .tab = t;
114
114
$$ LANGUAGE sql STABLE STRICT;
115
115
116
116
CREATE FUNCTION cols (t regclass)
117
117
RETURNS TABLE (num smallint , col name, typ regtype) AS $$
118
- SELECT num, col, typ FROM meta .cols WHERE meta .cols .tab = t;
118
+ SELECT num, col, typ FROM graphql .cols WHERE graphql .cols .tab = t;
119
119
$$ LANGUAGE sql STABLE STRICT;
120
120
121
121
CREATE FUNCTION fk (t regclass)
122
122
RETURNS TABLE (cols name[], other regclass, refs name[]) AS $$
123
- SELECT cols, other, refs FROM meta .fk WHERE meta .fk .tab = t;
123
+ SELECT cols, other, refs FROM graphql .fk WHERE graphql .fk .tab = t;
124
124
$$ LANGUAGE sql STABLE STRICT;
125
125
126
126
You can’t perform that action at this time.
0 commit comments