mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-24 17:00:37 +00:00
feat: support Dictionary type (#7277)
* feat: support Dictionary type Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix format Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * update proto Signed-off-by: Ruihang Xia <waynestxia@gmail.com> --------- Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
This commit is contained in:
@@ -223,7 +223,15 @@ fn push_column_to_rows(column: Column, rows: &mut [Row]) -> Result<()> {
|
||||
}
|
||||
}
|
||||
|
||||
)* }}
|
||||
)* _ => {
|
||||
return InvalidInsertRequestSnafu {
|
||||
reason: format!(
|
||||
"Column '{}' with type {:?} is not supported in row inserts.",
|
||||
column.column_name, column_type
|
||||
),
|
||||
}
|
||||
.fail();
|
||||
} }}
|
||||
}
|
||||
|
||||
push_column_values_match_types!(
|
||||
|
||||
Reference in New Issue
Block a user