diff --git a/src/sps_datatypes.rs b/src/sps_datatypes.rs index a0ff6e1..2129006 100644 --- a/src/sps_datatypes.rs +++ b/src/sps_datatypes.rs @@ -94,6 +94,10 @@ impl SPSDataTypes { pub fn create_sql_data_type(self) -> SQLDataType { self.into().create_sql_data_type() } + + pub fn into_string(self) -> String { + self.into().into_string() + } } impl From for UnparsedSPSDataType {