feat: add semantic_type to information_schema.columns (#1530)

This commit is contained in:
Ning Sun
2023-05-06 07:48:37 +00:00
committed by GitHub
parent 2c82ded975
commit d679cfcb53
6 changed files with 52 additions and 31 deletions

View File

@@ -30,3 +30,7 @@ pub const SCRIPTS_TABLE_ID: u32 = 1;
pub const MITO_ENGINE: &str = "mito";
pub const IMMUTABLE_FILE_ENGINE: &str = "file";
pub const SEMANTIC_TYPE_PRIMARY_KEY: &str = "PRIMARY KEY";
pub const SEMANTIC_TYPE_FIELD: &str = "FIELD";
pub const SEMANTIC_TYPE_TIME_INDEX: &str = "TIME INDEX";