-
Notifications
You must be signed in to change notification settings - Fork 759
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: iceberg table engine. (#13835)
* feat: iceberg table engine. * feat: iceberg table engine. * refactor: use table options. * show table options when 'show create table.' * fix clippy * rebase
- Loading branch information
1 parent
4f1bfcd
commit 6bc7124
Showing
33 changed files
with
258 additions
and
80 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 11 additions & 10 deletions
21
src/query/service/tests/it/storages/testdata/engines_table.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
---------- TABLE INFO ------------ | ||
DB.Table: 'system'.'engines', Table: engines-table_id:1, ver:0, Engine: SystemEngines | ||
-------- TABLE CONTENTS ---------- | ||
+----------+-------------------------------+ | ||
| Column 0 | Column 1 | | ||
+----------+-------------------------------+ | ||
| 'FUSE' | 'FUSE Storage Engine' | | ||
| 'MEMORY' | 'MEMORY Storage Engine' | | ||
| 'NULL' | 'NULL Storage Engine' | | ||
| 'RANDOM' | 'RANDOM Storage Engine' | | ||
| 'STREAM' | 'STREAM STORAGE Engine' | | ||
| 'VIEW' | 'VIEW STORAGE (LOGICAL VIEW)' | | ||
+----------+-------------------------------+ | ||
+-----------+-------------------------------+ | ||
| Column 0 | Column 1 | | ||
+-----------+-------------------------------+ | ||
| 'FUSE' | 'FUSE Storage Engine' | | ||
| 'ICEBERG' | 'ICEBERG STORAGE Engine' | | ||
| 'MEMORY' | 'MEMORY Storage Engine' | | ||
| 'NULL' | 'NULL Storage Engine' | | ||
| 'RANDOM' | 'RANDOM Storage Engine' | | ||
| 'STREAM' | 'STREAM STORAGE Engine' | | ||
| 'VIEW' | 'VIEW STORAGE (LOGICAL VIEW)' | | ||
+-----------+-------------------------------+ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.