[Question] How to use "select *" when column is constraint? #15126
-
I config access control policy on a table (name:"test_table") and not allow to visit column (name:"test_column") |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can set the config property It's not the default though since it makes queries non-deterministic (i.e. results depend on who runs them) which is a bad idea in any large system. It's better to be explicit about what you want. |
Beta Was this translation helpful? Give feedback.
You can set the config property
hide-inaccessible-columns
totrue
to get that behavior.It's not the default though since it makes queries non-deterministic (i.e. results depend on who runs them) which is a bad idea in any large system. It's better to be explicit about what you want.