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
Copy file name to clipboardExpand all lines: website/docs/quickstart/security.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ Before proceeding with this guide, ensure that [Docker](https://docs.docker.com/
39
39
All commands were tested with Docker version 27.4.0 and Docker Compose version v2.30.3.
40
40
41
41
:::note
42
-
We encourage you to use a recent version of Docker and [Compose v2](https://docs.docker.com/compose/releases/migrate/) (however, Compose v1 might work with a few adaptions).
42
+
We encourage you to use a recent version of Docker and [Compose v2](https://docs.docker.com/compose/releases/migrate/) (however, Compose v1 might work with a few adaptations).
43
43
:::
44
44
45
45
#### Starting required components
@@ -555,9 +555,9 @@ Output will show like:
555
555
The `marketing` user can only see the `marketing_db` database
556
556
```sql title="Flink SQL"
557
557
-- switch to marketing user context
558
-
use catalog marketing_catalog;
558
+
USE CATALOG marketing_catalog;
559
559
-- show databases using marketing user credentials
560
-
show databases;
560
+
SHOW DATABASES;
561
561
```
562
562
**Output:**
563
563
```text
@@ -572,9 +572,9 @@ show databases;
572
572
The `finance` user can only see the `finance_db` database:
573
573
```sql title="Flink SQL"
574
574
-- switch to finance user context
575
-
use catalog finance_catalog;
575
+
USE CATALOG finance_catalog;
576
576
-- show databases using finance user credentials
577
-
show databases;
577
+
SHOW DATABASES;
578
578
```
579
579
580
580
**Output:**
@@ -591,7 +591,7 @@ show databases;
591
591
The `marketing` user can operate on their own database:
0 commit comments