subzero integration WIP4

queries generated by subzero reach database and execute succesfully
This commit is contained in:
Ruslan Talpa
2025-06-24 15:33:51 +03:00
parent 67d3026fc4
commit d1445cf3eb
10 changed files with 502 additions and 40 deletions

View File

@@ -10,8 +10,8 @@ INSERT INTO test.items (name) VALUES
('test item 2'),
('test item 3');
CREATE ROLE test_role NOLOGIN;
GRANT test_role TO authenticator;
CREATE ROLE authenticated NOLOGIN;
GRANT authenticated TO authenticator;
GRANT USAGE ON SCHEMA test TO test_role;
GRANT ALL ON ALL TABLES IN SCHEMA test TO test_role;
GRANT USAGE ON SCHEMA test TO authenticated;
GRANT ALL ON ALL TABLES IN SCHEMA test TO authenticated;