Skip to content

Commit 2d47451

Browse files
authored
Apply suggestions from code review
1 parent 179be64 commit 2d47451

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

ydb/docs/en/core/reference/ydb-cli/export-import/view-backup.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Let's consider the following scenario:
3636
As the result of the steps described above, the `root_view` view is restored and selects from the `root_table` table:
3737

3838
```bash
39-
ydb sql --script 'select * from root_view' --explain
39+
ydb sql --script 'SELECT * FROM root_view' --explain
4040
```
4141

4242
The output of the command includes: `TableFullScan (Table: root_table, ...`
@@ -67,7 +67,7 @@ Let's consider the following scenario:
6767
As the result of the steps described above, the `a/b/c/my_view` view is restored and selects from the `a/b/c/my_table` table:
6868
6969
```bash
70-
ydb sql --script 'select * from `a/b/c/my_view`' --explain
70+
ydb sql --script 'SELECT * FROM `a/b/c/my_view`' --explain
7171
```
7272
7373
The output of the command includes: `TableFullScan (Table: a/b/c/my_table, ...`
@@ -98,7 +98,7 @@ Let's consider the following scenario:
9898
As the result of the steps described above, the `my_view` view is restored and selects from the `my_table` table:
9999

100100
```bash
101-
ydb sql --script 'select * from my_view' --explain
101+
ydb sql --script 'SELECT * FROM my_view' --explain
102102
```
103103

104104
The output of the command includes: `TableFullScan (Table: my_table, ...`
@@ -133,7 +133,7 @@ Let's consider the following scenario:
133133
As the result of the steps described above, the `root_view` view is restored and selects from the `root_table` table located in the `/restored_database`:
134134
135135
```bash
136-
ydb --endpoint <endpoint> --database /restored_database sql --script 'select * from root_view' --explain
136+
ydb --endpoint <endpoint> --database /restored_database sql --script 'SELECT * FROM root_view' --explain
137137
```
138138
139139
The output of the command includes: `TableFullScan (Table: root_table, ...`

ydb/docs/ru/core/reference/ydb-cli/export-import/view-backup.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
В результате описанных выше шагов представление `root_view` восстанавливается и читает из таблицы `root_table`:
3737

3838
```bash
39-
ydb sql --script 'select * from root_view' --explain
39+
ydb sql --script 'SELECT * FROM root_view' --explain
4040
```
4141

4242
В выводе выполненной команды отображается: `TableFullScan (Table: root_table, ...`
@@ -67,7 +67,7 @@ ydb sql --script 'select * from root_view' --explain
6767
В результате описанных выше шагов представление `a/b/c/my_view` восстанавливается и читает из таблицы `a/b/c/my_table`:
6868

6969
```bash
70-
ydb sql --script 'select * from `a/b/c/my_view`' --explain
70+
ydb sql --script 'SELECT * FROM `a/b/c/my_view`' --explain
7171
```
7272

7373
В выводе выполненной команды отображается: `TableFullScan (Table: a/b/c/my_table, ...`
@@ -98,7 +98,7 @@ ydb sql --script 'select * from `a/b/c/my_view`' --explain
9898
В результате описанных выше шагов представление `my_view` восстанавливается и читает из таблицы `my_table`:
9999

100100
```bash
101-
ydb sql --script 'select * from my_view' --explain
101+
ydb sql --script 'SELECT * FROM my_view' --explain
102102
```
103103

104104
В выводе выполненной команды отображается: `TableFullScan (Table: my_table, ...`
@@ -133,7 +133,7 @@ ydb sql --script 'select * from my_view' --explain
133133
В результате описанных выше шагов представление `root_view` восстанавливается и читает из таблицы `root_table`, расположенной в `/restored_database`:
134134

135135
```bash
136-
ydb --endpoint <endpoint> --database /restored_database sql --script 'select * from root_view' --explain
136+
ydb --endpoint <endpoint> --database /restored_database sql --script 'SELECT * FROM root_view' --explain
137137
```
138138

139139
В выводе выполненной команды отображается: `TableFullScan (Table: root_table, ...`

0 commit comments

Comments
 (0)