Cole MacKenzie
07/14/2023, 10:24 PMfn is_table_already_exists(value: &DeltaTableError) -> bool {
match value {
deltalake::DeltaTableError::GenericError { source } => source
.to_string()
.eq("A Delta Lake table already exists at that location."),
_ => false,
}
}
😬enum
is not public https://github.com/delta-io/delta-rs/blob/255473dc88df458b8563394f37af14ddb280887f/rust/src/operations/create.rs#L32rtyler
07/14/2023, 10:28 PMRobert
07/17/2023, 7:13 AM