From d3ef430bdbbb36b3ce326fe060fae6b659306b5a Mon Sep 17 00:00:00 2001 From: Hlars Date: Wed, 10 Nov 2021 16:08:43 +0100 Subject: [PATCH] added into_string() for SPSDataTypes --- src/sps_datatypes.rs | 4 ++++ 1 file changed, 4 insertions(+) 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 {