Close #1145, OpenAPI materialized view columns
This commit is contained in:
committed by
Steve Chávez
parent
105671e51a
commit
69a76a627f
Vendored
+1
@@ -86,6 +86,7 @@ GRANT ALL ON TABLE
|
||||
, authors_have_book_in_decade
|
||||
, foos
|
||||
, bars
|
||||
, materialized_projects
|
||||
TO postgrest_test_anonymous;
|
||||
|
||||
GRANT INSERT ON TABLE insertonly TO postgrest_test_anonymous;
|
||||
|
||||
Vendored
+8
@@ -1536,3 +1536,11 @@ CREATE TABLE test.bar(
|
||||
|
||||
CREATE VIEW test.foos as select id,name from "Foo";
|
||||
CREATE VIEW test.bars as select id, "fooId", name from bar;
|
||||
|
||||
create materialized view materialized_projects as
|
||||
select id, name, client_id from projects;
|
||||
|
||||
comment on materialized view materialized_projects is
|
||||
$$A materialized view for projects
|
||||
|
||||
Just a test for materialized views$$;
|
||||
|
||||
Reference in New Issue
Block a user