-
Notifications
You must be signed in to change notification settings - Fork 383
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
xiaojiebao
committed
Feb 5, 2024
1 parent
1c7021a
commit 1fc8cd0
Showing
12 changed files
with
399 additions
and
45 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
CREATE TABLE IF NOT EXISTS `metalake_meta` | ||
( | ||
`id` BIGINT(20) UNSIGNED NOT NULL COMMENT 'metalake id', | ||
`metalake_name` VARCHAR(128) NOT NULL COMMENT 'metalake name', | ||
`metalake_comment` VARCHAR(256) DEFAULT '' COMMENT 'metalake comment', | ||
`properties` MEDIUMTEXT DEFAULT NULL COMMENT 'metalake properties', | ||
`audit_info` MEDIUMTEXT NOT NULL COMMENT 'metalake audit info', | ||
`schema_version` TEXT NOT NULL COMMENT 'metalake schema version info', | ||
PRIMARY KEY (`id`), | ||
UNIQUE KEY `uk_mn` (`metalake_name`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT 'metalake metadata'; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.