zhilinli123 commented on code in PR #6842:
URL: https://github.com/apache/seatunnel/pull/6842#discussion_r1623945313
##########
docs/en/connector-v2/source/Hive.md:
##########
@@ -31,72 +36,62 @@ Read all the data in a split in a pollNext call. What
splits are read will be sa
- [x] orc
- [x] json
-## Options
-
-| name | type | required | default value |
-|----------------------|--------|----------|----------------|
-| table_name | string | yes | - |
-| metastore_uri | string | yes | - |
-| krb5_path | string | no | /etc/krb5.conf |
-| kerberos_principal | string | no | - |
-| kerberos_keytab_path | string | no | - |
-| hdfs_site_path | string | no | - |
-| hive_site_path | string | no | - |
-| read_partitions | list | no | - |
-| read_columns | list | no | - |
-| compress_codec | string | no | none |
-| common-options | | no | - |
-
-### table_name [string]
-
-Target Hive table name eg: db1.table1
-
-### metastore_uri [string]
-
-Hive metastore uri
-
-### hdfs_site_path [string]
-
-The path of `hdfs-site.xml`, used to load ha configuration of namenodes
-
-### read_partitions [list]
-
-The target partitions that user want to read from hive table, if user does not
set this parameter, it will read all the data from hive table.
+## Data Type Mapping
+
+| Hive Data Type | SeaTunnel Data Type |
+|----------------|---------------------|
+| tinyint | byte |
+| smallint | short |
+| int | int |
+| bigint | long |
+| float | float |
+| double | double |
+| decimal | decimal |
+| timestamp | local_date_time |
+| date | local_date |
+| interval | not supported |
+| string | string |
+| varchar | string |
+| char | not supported |
+| boolean | boolean |
+| binary | byte array |
+| arrays | array |
+| maps | map |
+| structs | seatunnel row |
+| union | not supported |
+
+## Source Options
+
+| name | type | required | default value |
Description
|
Review Comment:
capitalize the first letter
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]