-
Notifications
You must be signed in to change notification settings - Fork 160
Expand file tree
/
Copy pathoutput.txt
More file actions
50 lines (39 loc) · 1.31 KB
/
output.txt
File metadata and controls
50 lines (39 loc) · 1.31 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
>>> [CLI] bundle deploy
Uploading bundle files to /Workspace/Users/[USERNAME]/.bundle/[UNIQUE_NAME]/files...
Deploying resources...
Updating deployment state...
Deployment complete!
>>> [CLI] grants get schema main.test-schema-[UNIQUE_NAME] --output json
{
"principal": "account users",
"privileges": [
"CREATE_VOLUME",
"SELECT"
]
}
>>> [CLI] bundle deployment unbind schema_1
Updating deployment state...
>>> [CLI] bundle deploy --var suffix=another
Uploading bundle files to /Workspace/Users/[USERNAME]/.bundle/[UNIQUE_NAME]/files...
Deploying resources...
Updating deployment state...
Deployment complete!
=== Grants should be the same as before unbind
>>> [CLI] grants get schema main.test-schema-[UNIQUE_NAME] --output json
{
"principal": "account users",
"privileges": [
"CREATE_VOLUME",
"SELECT"
]
}
>>> [CLI] bundle destroy --auto-approve
The following resources will be deleted:
delete resources.schemas.schema_1
This action will result in the deletion or recreation of the following UC schemas along with all the tables and views they contain:
delete resources.schemas.schema_1
All files and directories at the following location will be deleted: /Workspace/Users/[USERNAME]/.bundle/[UNIQUE_NAME]
Deleting files...
Destroy complete!
>>> [CLI] schemas delete main.test-schema-[UNIQUE_NAME]
0