Skip to content

Commit

Permalink
Added ValueType::enum_type_name() to signify enum types (#836)
Browse files Browse the repository at this point in the history
  • Loading branch information
billy1624 authored Dec 1, 2024
1 parent 3715b2e commit 81117a7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,10 @@ pub trait ValueType: Sized {
fn array_type() -> ArrayType;

fn column_type() -> ColumnType;

fn enum_type_name() -> Option<&'static str> {
None
}
}

#[derive(Debug)]
Expand Down

0 comments on commit 81117a7

Please sign in to comment.