2ad691edf7
[doc] Add manual for Array data type and functions ( #9700 )
...
Co-authored-by: cambyzju <zhuxiaoli01@baidu.com >
2022-05-25 16:44:20 +08:00
fdd5bc07a9
[doc]Add SQL Select usage help documentation ( #9729 )
...
Add SQL Select usage help documentation
2022-05-23 13:33:07 +08:00
97fad7a2ff
[doc]Add insert best practices ( #9723 )
...
Add insert best practices
2022-05-22 16:24:20 +08:00
0aac9489ae
[doc]add largeint doc ( #9609 )
...
add largeint doc
2022-05-17 19:26:45 +08:00
72e0042efb
[feature-wip](hudi) Step1: Support create hudi external table ( #9559 )
...
support create hudi table
support show create table for hudi table
### Design
1. create hudi table without schema(recommanded)
```sql
CREATE [EXTERNAL] TABLE table_name
ENGINE = HUDI
[COMMENT "comment"]
PROPERTIES (
"hudi.database" = "hudi_db_in_hive_metastore",
"hudi.table" = "hudi_table_in_hive_metastore",
"hudi.hive.metastore.uris" = "thrift://127.0.0.1:9083"
);
```
2. create hudi table with schema
```sql
CREATE [EXTERNAL] TABLE table_name
[(column_definition1[, column_definition2, ...])]
ENGINE = HUDI
[COMMENT "comment"]
PROPERTIES (
"hudi.database" = "hudi_db_in_hive_metastore",
"hudi.table" = "hudi_table_in_hive_metastore",
"hudi.hive.metastore.uris" = "thrift://127.0.0.1:9083"
);
```
When create hudi table with schema, the columns must exist in corresponding table in hive metastore.
2022-05-17 11:30:23 +08:00
cfe22f8691
[Doc]Add show tables help documentation ( #9568 )
2022-05-15 10:18:33 +08:00
1075648093
[doc]fix doc typo in data-model and date data type ( #9571 )
2022-05-15 10:17:46 +08:00
f11d320213
[feature] support row policy filter ( #9206 )
2022-05-11 22:11:10 +08:00
375c1bf5c0
[feature](mysql-table) support utf8mb4 for mysql external table ( #9402 )
...
This patch supports utf8mb4 for mysql external table.
if someone needs a mysql external table with utf8mb4 charset, but only support charset utf8 right now.
When create mysql external table, it can add an optional propertiy "charset" which can set character fom mysql connection,
default value is "utf8". You can set "utf8mb4" instead of "utf8" when you need.
2022-05-11 09:39:23 +08:00
092a12e983
[feature] show create materialized view ( #9391 )
2022-05-11 09:29:55 +08:00
70642e3bff
[Doc] 添加CTAS文档 ( #9454 )
...
* ADD: 添加CTAS文档
2022-05-10 09:01:42 +08:00
35f0725387
[doc] Update DECIMAL.md ( #9451 )
...
* Update DECIMAL.md
2022-05-09 09:17:24 +08:00
8932fcaf59
[Doc] fix doc link suffix .html to .md ( #9442 )
...
* fix doc link suffix html to md
2022-05-09 09:16:06 +08:00
ba2cc98cc0
[doc]fix typo in en faq and format pattern ( #9423 )
2022-05-07 19:16:59 +08:00
48966c9e7c
[fix][doc]style issues ( #9386 )
2022-05-07 08:44:08 +08:00
6d1c300241
[improvement](odbc) support more ODBC Connection Parameters for odbc external table ( #9198 )
...
user can add more supported ODBC Connection Parameters to resource PROPERTIES or external table PROPERTIES
2022-05-05 20:45:13 +08:00
239b6374ca
[doc] fix new doc v2 bug ( #9309 )
...
change sql-references-v2 to sql-references
2022-05-01 17:51:34 +08:00
420cc2c3d8
[fix](help-doc) fix format of all sql-manual doc ( #9306 )
2022-04-29 11:42:02 +08:00
74a482ca7f
[fix] fix docs build bug ( #9293 )
...
After this PR #9272 , the `docs/build_help_zip.sh` will run failed.
This PR fix this issue.
But the help module still has some parse problem, I will fix it in next PR.
This CL mainly changes:
1. fix `docs/build_help_zip.sh` error
2. remove `sql-reference-v2` to `sql-reference`
3. modify build extension github action to run `docs/build_help_zip.sh`
2022-04-28 22:19:04 +08:00