Skip to content

Commit 72213a0

Browse files
authored
[docs] update indents after #7938 (#8428)
1 parent ca97693 commit 72213a0

File tree

2 files changed

+23
-23
lines changed
  • ydb/docs
    • en/core/yql/reference/yql-core/syntax/create_table
    • ru/core/yql/reference/yql-core/syntax/create_table

2 files changed

+23
-23
lines changed

ydb/docs/en/core/yql/reference/yql-core/syntax/create_table/index.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -112,16 +112,16 @@ By default, if the `STORE` parameter is not specified, a row-oriented table is c
112112
- Creating a column-oriented table
113113

114114
```sql
115-
CREATE TABLE table_name (
116-
a Uint64 NOT NULL,
117-
b Uint64 NOT NULL,
118-
c Float,
119-
PRIMARY KEY (a, b)
120-
)
121-
WITH (
122-
STORE = COLUMN
123-
);
124-
```
115+
CREATE TABLE table_name (
116+
a Uint64 NOT NULL,
117+
b Uint64 NOT NULL,
118+
c Float,
119+
PRIMARY KEY (a, b)
120+
)
121+
WITH (
122+
STORE = COLUMN
123+
);
124+
```
125125

126126
{% endlist %}
127127

@@ -153,12 +153,12 @@ Specifying a `PRIMARY KEY` with a non-empty list of columns is mandatory. These
153153

154154
**Example**:
155155
```sql
156-
CREATE TABLE <table_name> (
157-
a Uint64,
158-
b Uint64,
159-
c Float,
160-
PRIMARY KEY (a, b)
161-
);
156+
CREATE TABLE <table_name> (
157+
a Uint64,
158+
b Uint64,
159+
c Float,
160+
PRIMARY KEY (a, b)
161+
);
162162
```
163163
{% endif %}
164164

ydb/docs/ru/core/yql/reference/yql-core/syntax/create_table/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -141,12 +141,12 @@ WITH (
141141

142142
**Пример**:
143143
```sql
144-
CREATE TABLE <table_name> (
145-
a Uint64,
146-
b Uint64,
147-
c Float,
148-
PRIMARY KEY (a, b)
149-
);
144+
CREATE TABLE <table_name> (
145+
a Uint64,
146+
b Uint64,
147+
c Float,
148+
PRIMARY KEY (a, b)
149+
);
150150
```
151151
{% endif %}
152152

@@ -159,4 +159,4 @@ WITH (
159159

160160
Для колоночных таблиц при их создании возможно задать только [дополнительные параметры](with.md).
161161

162-
{% endif %}
162+
{% endif %}

0 commit comments

Comments
 (0)