mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 09:02:00 +00:00
Fix data type (enum) table name error in docs
This commit is contained in:
parent
83104b3d5e
commit
8ac4ee3dca
@ -94,7 +94,7 @@ ENGINE = TinyLog
|
|||||||
it can store not only `'hello'` and `'world'`, but `NULL`, as well.
|
it can store not only `'hello'` and `'world'`, but `NULL`, as well.
|
||||||
|
|
||||||
```
|
```
|
||||||
INSERT INTO t_enum_null Values('hello'),('world'),(NULL)
|
INSERT INTO t_enum_nullable Values('hello'),('world'),(NULL)
|
||||||
```
|
```
|
||||||
|
|
||||||
In RAM, an `Enum` column is stored in the same way as `Int8` or `Int16` of the corresponding numerical values.
|
In RAM, an `Enum` column is stored in the same way as `Int8` or `Int16` of the corresponding numerical values.
|
||||||
|
@ -90,7 +90,7 @@ ENGINE = TinyLog
|
|||||||
, то в ней можно будет хранить не только `'hello'` и `'world'`, но и `NULL`.
|
, то в ней можно будет хранить не только `'hello'` и `'world'`, но и `NULL`.
|
||||||
|
|
||||||
```
|
```
|
||||||
INSERT INTO t_enum_null Values('hello'),('world'),(NULL)
|
INSERT INTO t_enum_nullable Values('hello'),('world'),(NULL)
|
||||||
```
|
```
|
||||||
|
|
||||||
В оперативке столбец типа `Enum` представлен так же, как `Int8` или `Int16` соответствующими числовыми значениями.
|
В оперативке столбец типа `Enum` представлен так же, как `Int8` или `Int16` соответствующими числовыми значениями.
|
||||||
|
@ -91,7 +91,7 @@ ENGINE = TinyLog
|
|||||||
不仅可以存储 `'hello'` 和 `'world'` ,还可以存储 `NULL`。
|
不仅可以存储 `'hello'` 和 `'world'` ,还可以存储 `NULL`。
|
||||||
|
|
||||||
```
|
```
|
||||||
INSERT INTO t_enum_null Values('hello'),('world'),(NULL)
|
INSERT INTO t_enum_nullable Values('hello'),('world'),(NULL)
|
||||||
```
|
```
|
||||||
|
|
||||||
在内存中,`Enum` 列的存储方式与相应数值的 `Int8` 或 `Int16` 相同。
|
在内存中,`Enum` 列的存储方式与相应数值的 `Int8` 或 `Int16` 相同。
|
||||||
|
Loading…
Reference in New Issue
Block a user