@@ -319,7 +319,7 @@ Write data using the `developer` user:
319319-- switch to developer user context
320320USE CATALOG developer_catalog;
321321
322- -- write data using developer credientials
322+ -- write data using developer credentials
323323INSERT INTO fluss_order VALUES (1 , 1 .0 );
324324```
325325The job should succeed as shown in the Flink UI.
@@ -330,7 +330,7 @@ Attempting to write data using the `consumer` user will fail in the Flink UI:
330330-- switch to consumer user context
331331USE CATALOG consumer_catalog;
332332
333- -- write data using consumer credientials
333+ -- write data using consumer credentials
334334INSERT INTO fluss_order VALUES (1 , 1 .0 );
335335```
336336** Output:**
@@ -349,7 +349,7 @@ SET 'sql-client.execution.result-mode' = 'tableau';
349349
350350-- switch to consumer user context
351351USE CATALOG consumer_catalog;
352- -- read data using consumer credientials
352+ -- read data using consumer credentials
353353SELECT * FROM ` consumer_catalog` .` fluss` .` fluss_order` LIMIT 10 ;
354354```
355355** Output:**
@@ -371,7 +371,7 @@ SET 'sql-client.execution.result-mode' = 'tableau';
371371-- switch to developer user context
372372USE CATALOG developer_catalog;
373373
374- -- read data using developer credientials
374+ -- read data using developer credentials
375375SELECT * FROM ` developer_catalog` .` fluss` .` fluss_order` LIMIT 10 ;
376376```
377377
@@ -556,7 +556,7 @@ The `marketing` user can only see the `marketing_db` database
556556``` sql title="Flink SQL"
557557-- switch to marketing user context
558558use catalog marketing_catalog;
559- -- show databases using marketing user credientials
559+ -- show databases using marketing user credentials
560560show databases;
561561```
562562** Output:**
@@ -573,7 +573,7 @@ The `finance` user can only see the `finance_db` database:
573573``` sql title="Flink SQL"
574574-- switch to finance user context
575575use catalog finance_catalog;
576- -- show databases using finance user credientials
576+ -- show databases using finance user credentials
577577show databases;
578578```
579579
@@ -592,7 +592,7 @@ The `marketing` user can operate on their own database:
592592``` sql title="Flink SQL"
593593-- switch to marketing user context
594594use catalog marketing_catalog;
595- -- create table using marketing user credientials
595+ -- create table using marketing user credentials
596596CREATE TABLE `marketing_db `.` order` (
597597 ` order_key` INT NOT NULL ,
598598 ` total_price` DECIMAL (15 , 2 ),
@@ -610,7 +610,7 @@ The `finance` user cannot access the `marketing` database:
610610``` sql title="Flink SQL"
611611-- switch to finance user context
612612use catalog finance_catalog;
613- -- create table using finance user credientials
613+ -- create table using finance user credentials
614614CREATE TABLE `marketing_db `.` order` (
615615 ` order_key` INT NOT NULL ,
616616 ` total_price` DECIMAL (15 , 2 ),
0 commit comments