You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ja...@apache.org on 2020/03/19 11:05:55 UTC

[flink] branch docs_experimental__docs updated: [FLINK-16678][docs] Fix typo in HBase SQL connector page

This is an automated email from the ASF dual-hosted git repository.

jark pushed a commit to branch docs_experimental__docs
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/docs_experimental__docs by this push:
     new 4649ddd  [FLINK-16678][docs] Fix typo in HBase SQL connector page
4649ddd is described below

commit 4649ddd27e90b16d00076299e814a3d0541eb099
Author: 苏苏苏雷 <77...@qq.com>
AuthorDate: Thu Mar 19 19:05:34 2020 +0800

    [FLINK-16678][docs] Fix typo in HBase SQL connector page
    
    This closes #11452
---
 docs/dev/table/connect.md    | 2 +-
 docs/dev/table/connect.zh.md | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/dev/table/connect.md b/docs/dev/table/connect.md
index 3add088..9a9a847 100644
--- a/docs/dev/table/connect.md
+++ b/docs/dev/table/connect.md
@@ -1176,7 +1176,7 @@ CREATE TABLE MyUserTable (
 
 **Columns:** All the column families in HBase table must be declared as `ROW` type, the field name maps to the column family name, and the nested field names map to the column qualifier names. There is no need to declare all the families and qualifiers in the schema, users can declare what's necessary. Except the `ROW` type fields, the only one field of atomic type (e.g. `STRING`, `BIGINT`) will be recognized as row key of the table. There's no constraints on the name of row key field. 
 
-**Temporary join:** Lookup join against HBase do not use any caching; data is always queired directly through the HBase client.
+**Temporary join:** Lookup join against HBase do not use any caching; data is always queried directly through the HBase client.
 
 {% top %}
 
diff --git a/docs/dev/table/connect.zh.md b/docs/dev/table/connect.zh.md
index dd2e8b1..3e815cd 100644
--- a/docs/dev/table/connect.zh.md
+++ b/docs/dev/table/connect.zh.md
@@ -1176,7 +1176,7 @@ CREATE TABLE MyUserTable (
 
 **Columns:** All the column families in HBase table must be declared as `ROW` type, the field name maps to the column family name, and the nested field names map to the column qualifier names. There is no need to declare all the families and qualifiers in the schema, users can declare what's necessary. Except the `ROW` type fields, the only one field of atomic type (e.g. `STRING`, `BIGINT`) will be recognized as row key of the table. There's no constraints on the name of row key field.
 
-**Temporary join:** Lookup join against HBase do not use any caching; data is always queired directly through the HBase client.
+**Temporary join:** Lookup join against HBase do not use any caching; data is always queried directly through the HBase client.
 
 {% top %}