mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-20 23:10:37 +00:00
feat: v04 rm unused exprs (#2285)
* feat: rm compact and flush exprs * refactor: continue to rm compact and flush
This commit is contained in:
@@ -415,11 +415,11 @@ pub fn sql_location_to_grpc_add_column_location(
|
||||
match location {
|
||||
Some(AddColumnLocation::First) => Some(Location {
|
||||
location_type: LocationType::First.into(),
|
||||
after_cloumn_name: "".to_string(),
|
||||
after_column_name: "".to_string(),
|
||||
}),
|
||||
Some(AddColumnLocation::After { column_name }) => Some(Location {
|
||||
location_type: LocationType::After.into(),
|
||||
after_cloumn_name: column_name.to_string(),
|
||||
after_column_name: column_name.to_string(),
|
||||
}),
|
||||
None => None,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user