Skip to content

Commit

Permalink
[MINOR] improve(docs): use html entities (#2134)
Browse files Browse the repository at this point in the history
### 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:

<img width="837" alt="image"
src="https://github.com/datastrato/gravitino/assets/24897598/f30274da-ef49-4cfb-b953-de402d47309f">

Co-authored-by: mchades <[email protected]>
  • Loading branch information
jerryshao and mchades authored Feb 7, 2024
1 parent 5742574 commit 159fda5
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
20 changes: 10 additions & 10 deletions docs/manage-metadata-using-gravitino.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` | &#10008; |
| `lakehouse-iceberg` | &#10008; |
| `jdbc-mysql` | &#10004; |
| `jdbc-postgresql` | &#10004; |

#### 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` | &#10008; |
| `lakehouse-iceberg` | &#10008; |
| `jdbc-mysql` | &#10004;([limitations](./jdbc-mysql-catalog.md#table-column-auto-increment)) |
| `jdbc-postgresql` | &#10004; |

#### Table property and type mapping

Expand Down
14 changes: 7 additions & 7 deletions docs/manage-table-partition-using-gravitino.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 | &#10004; | &#10008; | &#10008; | &#10008; |
| Get Partition by Name | &#10004; | &#10008; | &#10008; | &#10008; |
| List Partition Names | &#10004; | &#10008; | &#10008; | &#10008; |
| List Partitions | &#10004; | &#10008; | &#10008; | &#10008; |
| Drop Partition | &#128640;([Coming Soon](https://github.com/datastrato/gravitino/issues/1655)) | &#128640;([Coming Soon](https://github.com/datastrato/gravitino/issues/1655)) | &#10008; | &#10008; |

:::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).
Expand Down

0 comments on commit 159fda5

Please sign in to comment.