Skip to content

Commit 91502fa

Browse files
authored
Replace 'Notice' with 'Note' in documentation
unify all notes.
1 parent 33276fc commit 91502fa

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/user_manual/quick_starts/en-US/chapter_07_diagnosis_and_tuning/05_management_execution_plan.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1089,7 +1089,7 @@ EXPLAIN BASIC SELECT /*+ LEADING(t0 (t1 t2)) USE_NL((t1 t2)) */ * FROM t0, t1, t
10891089
+-----------------------------------------------------------------------------------------------------------------------+
10901090
```
10911091

1092-
> **Notice**
1092+
> **Note**
10931093
>
10941094
> The `USE_NL`, `USE_HASH`, and `USE_MERGE` hints are usually used with the `LEADING` hint because the optimizer generates a plan based on the hint semantics only when the right-side table in the join matches `table_name_list`.
10951095
>
@@ -1311,7 +1311,7 @@ For an application that you already launched, if a plan selected by the optimize
13111311

13121312
OceanBase Database supports creating an outline based on `SQL_TEXT` or `SQL_ID`, where `SQL_TEXT` is the original SQL statement with parameters.
13131313

1314-
> **Notice**
1314+
> **Note**
13151315
>
13161316
> To create an outline, you must go to the corresponding database.
13171317

@@ -1336,7 +1336,7 @@ CREATE [OR REPLACE] OUTLINE <outline_name> ON <stmt>;
13361336
WHERE col1 = 4 AND col2 = 6 ORDER BY 2 TO SELECT * FROM tbl1 WHERE col1 = 4 AND col2 = 6 ORDER BY 2;
13371337
```
13381338

1339-
> **Notice**
1339+
> **Note**
13401340
>
13411341
> When you specify `target_stmt`, you must ensure that `stmt` exactly matches `target_stmt` when hints are removed.
13421342

@@ -1419,7 +1419,7 @@ DROP OUTLINE otl_t1_full;
14191419
CREATE OUTLINE otl_t1_idx_c2 ON "ED570339F2C856BA96008A29EDF04C74" USING HINT /*+ INDEX(t1 idx_c2)*/ ;
14201420
```
14211421

1422-
> **Notice**
1422+
> **Note**
14231423
>
14241424
> - A hint is specified in the `/*+ xxx*/` format.
14251425
>
@@ -1648,4 +1648,4 @@ Here are some examples:
16481648

16491649
```sql
16501650
ALTER OUTLINE otl2 ON SELECT /*+ USE_NL(tbl2) MAX_CONCURRENT(1) */ * FROM t WHERE c1 = ?;
1651-
```
1651+
```

0 commit comments

Comments
 (0)