diff options
author | bazeltsev <bazeltsev@ydb.tech> | 2022-07-12 11:06:14 +0300 |
---|---|---|
committer | bazeltsev <bazeltsev@ydb.tech> | 2022-07-12 11:06:14 +0300 |
commit | c6cdad018516a5a339c99143ebddf93b278edb9a (patch) | |
tree | 7429bacc34973d7347686fb64f7c52cc35c3c2c3 | |
parent | e0c4538dba443e13e4fc08976777b3e1889b06e2 (diff) | |
download | ydb-c6cdad018516a5a339c99143ebddf93b278edb9a.tar.gz |
Fix create table format
fixed
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | ydb/docs/en/core/yql/reference/yql-core/syntax/_includes/create_table.md | 7 | ||||
-rw-r--r-- | ydb/docs/ru/core/yql/reference/yql-core/syntax/_includes/create_table.md | 2 |
3 files changed, 5 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index ea2139cfbb..ca4feb96da 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -33,7 +33,7 @@ conan_cmake_configure( GENERATORS cmake_find_package REQUIRES bison/3.5.3 - c-ares/1.17.2 + c-ares/1.18.1 libiconv/1.15 openssl/1.1.1l ragel/6.10 diff --git a/ydb/docs/en/core/yql/reference/yql-core/syntax/_includes/create_table.md b/ydb/docs/en/core/yql/reference/yql-core/syntax/_includes/create_table.md index 772ddf812c..72b7373cb8 100644 --- a/ydb/docs/en/core/yql/reference/yql-core/syntax/_includes/create_table.md +++ b/ydb/docs/en/core/yql/reference/yql-core/syntax/_includes/create_table.md @@ -49,13 +49,12 @@ It is mandatory to specify the `PRIMARY KEY` with a non-empty list of columns. T CREATE TABLE my_table ( a Uint64, b Bool, - -{% if feature_not_null %} c Float NOT NULL,{% else %} c Float,{% endif %} +{% if feature_not_null %} c Float NOT NULL,{% else %} c Float,{% endif %} {% if feature_column_container_type %} d "List<List<Int32>>"{% endif %} {% if feature_map_tables %} -PRIMARY KEY (b, a) + PRIMARY KEY (b, a) {% endif %} -) + ) {% if feature_secondary_index %} diff --git a/ydb/docs/ru/core/yql/reference/yql-core/syntax/_includes/create_table.md b/ydb/docs/ru/core/yql/reference/yql-core/syntax/_includes/create_table.md index e029a124d8..ad63484fd3 100644 --- a/ydb/docs/ru/core/yql/reference/yql-core/syntax/_includes/create_table.md +++ b/ydb/docs/ru/core/yql/reference/yql-core/syntax/_includes/create_table.md @@ -50,7 +50,7 @@ CREATE TABLE my_table ( a Uint64, b Bool, -{% if feature_not_null %} c Float NOT NULL,{% else %} c Float,{% endif %} +{% if feature_not_null %} c Float NOT NULL,{% else %} c Float,{% endif %} {% if feature_column_container_type %} d "List<List<Int32>>"{% endif %} {% if feature_map_tables %} PRIMARY KEY (b, a) |