This is an automated email from the ASF dual-hosted git repository.
okumin pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/hive-site.git
The following commit(s) were added to refs/heads/main by this push:
new 7416c53 Fix typo `inout` in design.md (#85)
7416c53 is described below
commit 7416c53470eff07f5425cd992702f7991231a8cb
Author: Wenjun Ruan <[email protected]>
AuthorDate: Wed Dec 17 16:40:35 2025 +0800
Fix typo `inout` in design.md (#85)
Co-authored-by: ruanwenjun <[email protected]>
---
content/Development/desingdocs/design.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/content/Development/desingdocs/design.md
b/content/Development/desingdocs/design.md
index 5fd82ac..eeaf56e 100644
--- a/content/Development/desingdocs/design.md
+++ b/content/Development/desingdocs/design.md
@@ -43,7 +43,7 @@ The Metastore provides two important but often overlooked
features of a data war
### Metadata Objects
* Database – is a namespace for tables. It can be used as an administrative
unit in the future. The database 'default' is used for tables with no
user-supplied database name.
-* Table – Metadata for a table contains list of columns, owner, storage and
SerDe information. It can also contain any user-supplied key and value data.
Storage information includes location of the underlying data, file inout and
output formats and bucketing information. SerDe metadata includes the
implementation class of serializer and deserializer and any supporting
information required by the implementation. All of this information can be
provided during creation of the table.
+* Table – Metadata for a table contains list of columns, owner, storage and
SerDe information. It can also contain any user-supplied key and value data.
Storage information includes location of the underlying data, file input and
output formats and bucketing information. SerDe metadata includes the
implementation class of serializer and deserializer and any supporting
information required by the implementation. All of this information can be
provided during creation of the table.
* Partition – Each partition can have its own columns and SerDe and storage
information. This facilitates schema changes without affecting older partitions.
### Metastore Architecture