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
create database default;
create table default.test(a varchar);
create database default2;
create view default2.v_test as select * from default.test;
GRANT SELECT on default2.v_test TO 'xx';
Sometimes, we just want to allow user can connect Databend to query default2.v_test, and can't query any data from default.test.
The text was updated successfully, but these errors were encountered:
Summary
Sometimes, we just want to allow user can connect
Databend
to querydefault2.v_test
, and can't query any data fromdefault.test
.The text was updated successfully, but these errors were encountered: