From 159fda5e6f14ab7f08b7d27553952585db91f187 Mon Sep 17 00:00:00 2001 From: Jerry Shao Date: Wed, 7 Feb 2024 13:20:26 +0800 Subject: [PATCH] [MINOR] improve(docs): use html entities (#2134) ### What changes were proposed in this pull request? use html entities ### Why are the changes needed? make the table clearer ### Does this PR introduce _any_ user-facing change? no ### How was this patch tested? local tested: image Co-authored-by: mchades --- docs/manage-metadata-using-gravitino.md | 20 +++++++++---------- .../manage-table-partition-using-gravitino.md | 14 ++++++------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/docs/manage-metadata-using-gravitino.md b/docs/manage-metadata-using-gravitino.md index 3a337577cf4..a0b5d2508f8 100644 --- a/docs/manage-metadata-using-gravitino.md +++ b/docs/manage-metadata-using-gravitino.md @@ -831,22 +831,22 @@ The following is a table of the column default value that Gravitino supports for | Catalog provider | Supported default value | |---------------------|-------------------------| -| `hive` | NO | -| `lakehouse-iceberg` | NO | -| `jdbc-mysql` | YES | -| `jdbc-postgresql` | YES | +| `hive` | ✘ | +| `lakehouse-iceberg` | ✘ | +| `jdbc-mysql` | ✔ | +| `jdbc-postgresql` | ✔ | #### Table column auto-increment Auto-increment provides a convenient way to ensure that each row in a table has a unique identifier without the need for manually managing identifier allocation. The following table shows the column auto-increment that Gravitino supports for different catalogs: -| Catalog provider | Supported auto-increment | -|---------------------|-----------------------------------------------------------------------------| -| `hive` | NO | -| `lakehouse-iceberg` | NO | -| `jdbc-mysql` | YES with [limitations](./jdbc-mysql-catalog.md#table-column-auto-increment) | -| `jdbc-postgresql` | YES | +| Catalog provider | Supported auto-increment | +|---------------------|------------------------------------------------------------------------------| +| `hive` | ✘ | +| `lakehouse-iceberg` | ✘ | +| `jdbc-mysql` | ✔([limitations](./jdbc-mysql-catalog.md#table-column-auto-increment)) | +| `jdbc-postgresql` | ✔ | #### Table property and type mapping diff --git a/docs/manage-table-partition-using-gravitino.md b/docs/manage-table-partition-using-gravitino.md index 07d4b70a298..4035758a06c 100644 --- a/docs/manage-table-partition-using-gravitino.md +++ b/docs/manage-table-partition-using-gravitino.md @@ -19,13 +19,13 @@ Although many catalogs inherently manage partitions automatically, there are sce The following table shows the partition operations supported across various catalogs in Gravitino: -| Operation | Hive catalog | Iceberg catalog | Jdbc-Mysql catalog | Jdbc-PostgreSQL catalog | -|-----------------------|--------------------------------------------------------------------|--------------------------------------------------------------------|--------------------|-------------------------| -| Add Partition | YES | NO | NO | NO | -| Get Partition by Name | YES | NO | NO | NO | -| List Partition Names | YES | NO | NO | NO | -| List Partitions | YES | NO | NO | NO | -| Drop Partition | [Coming Soon](https://github.com/datastrato/gravitino/issues/1655) | [Coming Soon](https://github.com/datastrato/gravitino/issues/1655) | NO | NO | +| Operation | Hive catalog | Iceberg catalog | Jdbc-Mysql catalog | Jdbc-PostgreSQL catalog | +|-----------------------|-------------------------------------------------------------------------------|-------------------------------------------------------------------------------|--------------------|-------------------------| +| Add Partition | ✔ | ✘ | ✘ | ✘ | +| Get Partition by Name | ✔ | ✘ | ✘ | ✘ | +| List Partition Names | ✔ | ✘ | ✘ | ✘ | +| List Partitions | ✔ | ✘ | ✘ | ✘ | +| Drop Partition | 🚀([Coming Soon](https://github.com/datastrato/gravitino/issues/1655)) | 🚀([Coming Soon](https://github.com/datastrato/gravitino/issues/1655)) | ✘ | ✘ | :::tip[WELCOME FEEDBACK] If you need additional partition management support for a specific catalog, please feel free to [create an issue](https://github.com/datastrato/gravitino/issues/new/choose) on the [Gravitino repository](https://github.com/datastrato/gravitino).