Skip to content

Commit

Permalink
fix: change EXTRA field type to string
Browse files Browse the repository at this point in the history
  • Loading branch information
dimbtp committed Dec 30, 2023
1 parent 69441ed commit 970759f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/catalog/src/information_schema/memory_table/tables.rs
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ pub fn get_schema_columns(table_name: &str) -> (SchemaRef, Vec<VectorRef>) {
datetime_column("CHECK_TIME"),
string_column("CHECKSUM"),
string_column("STATUS"),
bigint_column("EXTRA"),
string_column("EXTRA"),
],
vec![],
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ select * from information_schema.columns order by table_schema, table_name;
| greptime | information_schema | events | last_altered | DateTime | FIELD | | No | DateTime | |
| greptime | information_schema | files | logfile_group_name | String | FIELD | | No | String | |
| greptime | information_schema | files | data_free | Int64 | FIELD | | No | Int64 | |
| greptime | information_schema | files | extra | Int64 | FIELD | | No | Int64 | |
| greptime | information_schema | files | extra | String | FIELD | | No | String | |
| greptime | information_schema | files | status | String | FIELD | | No | String | |
| greptime | information_schema | files | checksum | String | FIELD | | No | String | |
| greptime | information_schema | files | check_time | DateTime | FIELD | | No | DateTime | |
Expand Down

0 comments on commit 970759f

Please sign in to comment.