You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from (values (1,3,'foo'),(0,null,null),(2,2,'bar'),(3,1,'baz')) v(a,b,c);
1599
1599
+ERROR: unknown function: aggfns()
1600
-
+HINT: There is probably a typo in function name. Or the intention was to use a user-defined function in the view query, which is currently not supported.
from (values (1,3,'foo'),(0,null,null),(2,2,'bar'),(3,1,'baz')) v(a,b,c),
1619
1618
generate_series(1,3) i;
1620
1619
+ERROR: unknown function: aggfns()
1621
-
+HINT: There is probably a typo in function name. Or the intention was to use a user-defined function in the view query, which is currently not supported.
from (values (1,3,'foo'),(0,null,null),(2,2,'bar'),(3,1,'baz')) v(a,b,c);
1666
1664
+ERROR: unknown function: aggfns()
1667
-
+HINT: There is probably a typo in function name. Or the intention was to use a user-defined function in the view query, which is currently not supported.
from (values (1,3,'foo'),(0,null,null),(2,2,'bar'),(3,1,'baz')) v(a,b,c);
1686
1683
+ERROR: unknown function: aggfns()
1687
-
+HINT: There is probably a typo in function name. Or the intention was to use a user-defined function in the view query, which is currently not supported.
+HINT: There is probably a typo in function name. Or the intention was to use a user-defined function in the view query, which is currently not supported.
3980
3979
create table alterlock (f1 int primary key, f2 text);
3981
3980
insert into alterlock values (1, 'foo');
3982
3981
create table alterlock2 (f3 int primary key, f1 int);
+HINT: There is probably a typo in function name. Or the intention was to use a user-defined function in the view query, which is currently not supported.
4209
4207
-- raise exception
4210
4208
alter table my_locks set (autovacuum_enabled = false);
+HINT: There is probably a typo in function name. Or the intention was to use a user-defined function in the view query, which is currently not supported.
create view tt14v as select t.f1, t.f4 from tt14f() t;
2187
2186
+ERROR: unknown function: tt14f()
2188
-
+HINT: There is probably a typo in function name. Or the intention was to use a user-defined function in the view query, which is currently not supported.
+HINT: There is probably a typo in function name. Or the intention was to use a user-defined function in the view query, which is currently not supported.
639
638
--
640
639
-- First we build the house - so we create the rooms
-- REFRESH of this MV will queue a GRANT at end of transaction
3144
3144
CREATE MATERIALIZED VIEW sro_mv AS SELECT mv_action() WITH NO DATA;
3145
3145
+ERROR: unknown function: mv_action()
3146
-
+HINT: There is probably a typo in function name. Or the intention was to use a user-defined function in the view query, which is currently not supported.
3147
3146
REFRESH MATERIALIZED VIEW sro_mv;
3148
3147
-ERROR: cannot create a cursor WITH HOLD within security-restricted operation
CREATE VIEW vw_getrngfunc AS SELECT * FROM getrngfunc8(1);
327
327
+ERROR: unknown function: getrngfunc8()
328
-
+HINT: There is probably a typo in function name. Or the intention was to use a user-defined function in the view query, which is currently not supported.
CREATE VIEW vw_getrngfunc AS SELECT * FROM getrngfunc8(1) WITH ORDINALITY AS t1(v,o);
339
338
+ERROR: unknown function: getrngfunc8()
340
-
+HINT: There is probably a typo in function name. Or the intention was to use a user-defined function in the view query, which is currently not supported.
CREATE VIEW vw_getrngfunc AS SELECT * FROM getrngfunc9(1);
368
366
+ERROR: unknown function: getrngfunc9()
369
-
+HINT: There is probably a typo in function name. Or the intention was to use a user-defined function in the view query, which is currently not supported.
CREATE VIEW vw_getrngfunc AS SELECT * FROM getrngfunc9(1) WITH ORDINALITY AS t1(a,b,c,o);
380
377
+ERROR: unknown function: getrngfunc9()
381
-
+HINT: There is probably a typo in function name. Or the intention was to use a user-defined function in the view query, which is currently not supported.
+HINT: There is probably a typo in function name. Or the intention was to use a user-defined function in the view query, which is currently not supported.
SELECT * FROM ROWS FROM(get_users(), generate_series(10,11)) WITH ORDINALITY;
1908
1903
+ERROR: unknown function: get_users()
1909
-
+HINT: There is probably a typo in function name. Or the intention was to use a user-defined function in the view query, which is currently not supported.
+HINT: There is probably a typo in function name. Or the intention was to use a user-defined function in the view query, which is currently not supported.
CREATE VIEW xmlview1 AS SELECT xmlcomment('test');
982
982
+ERROR: unknown function: xmlcomment()
983
-
+HINT: There is probably a typo in function name. Or the intention was to use a user-defined function in the view query, which is currently not supported.
984
983
CREATE VIEW xmlview2 AS SELECT xmlconcat('hello', 'you');
985
984
-ERROR: unsupported XML feature
986
985
-LINE 1: CREATE VIEW xmlview2 AS SELECT xmlconcat('hello', 'you');
987
986
- ^
988
987
-DETAIL: This functionality requires the server to be built with libxml support.
989
988
+ERROR: unknown function: xmlconcat()
990
-
+HINT: There is probably a typo in function name. Or the intention was to use a user-defined function in the view query, which is currently not supported.
991
989
CREATE VIEW xmlview3 AS SELECT xmlelement(name element, xmlattributes (1 as ":one:", 'deuce' as two), 'content&');
992
990
-ERROR: unsupported XML feature
993
991
-DETAIL: This functionality requires the server to be built with libxml support.
CREATE VIEW xmlview5 AS SELECT xmlparse(content '<abc>x</abc>');
1006
1004
+ERROR: unknown function: xmlparse()
1007
-
+HINT: There is probably a typo in function name. Or the intention was to use a user-defined function in the view query, which is currently not supported.
1008
1005
CREATE VIEW xmlview6 AS SELECT xmlpi(name foo, 'bar');
1009
1006
-ERROR: unsupported XML feature
1010
1007
-DETAIL: This functionality requires the server to be built with libxml support.
0 commit comments