-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
35 lines (31 loc) · 750 Bytes
/
data.json
File metadata and controls
35 lines (31 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"trino": {
"base_users": ["root", "trino"],
"base_operations": [
"ExecuteQuery",
"AccessCatalog",
"CreateSchema",
"CreateTable",
"ExecuteProcedure",
"ShowSchemas",
"ShowTables"
],
"catalog_permissions": {
"root": ["lakehouse"],
"trino": ["lakehouse"]
},
"schema_permissions": {
"root": ["lakehouse"],
"trino": ["nyc_tripdata"]
},
"table_permissions": {
"root": ["lakehouse"],
"trino": ["lakehouse"]
},
"table_operations": [
"ShowColumns",
"SelectFromColumns",
"InsertIntoTable"
]
}
}