Fix data type (enum) table name error in docs

This commit is contained in:
sev7e0 2019-08-22 14:29:21 +08:00
parent 83104b3d5e
commit 8ac4ee3dca
3 changed files with 3 additions and 3 deletions

View File

@ -94,7 +94,7 @@ ENGINE = TinyLog
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.

View File

@ -90,7 +90,7 @@ ENGINE = TinyLog
, то в ней можно будет хранить не только `'hello'` и `'world'`, но и `NULL`.
```
INSERT INTO t_enum_null Values('hello'),('world'),(NULL)
INSERT INTO t_enum_nullable Values('hello'),('world'),(NULL)
```
В оперативке столбец типа `Enum` представлен так же, как `Int8` или `Int16` соответствующими числовыми значениями.

View File

@ -91,7 +91,7 @@ ENGINE = TinyLog
不仅可以存储 `'hello'``'world'` ,还可以存储 `NULL`
```
INSERT INTO t_enum_null Values('hello'),('world'),(NULL)
INSERT INTO t_enum_nullable Values('hello'),('world'),(NULL)
```
在内存中,`Enum` 列的存储方式与相应数值的 `Int8``Int16` 相同。