From 01716e604dfd3255259350ce0a7a40862e44ab25 Mon Sep 17 00:00:00 2001 From: Arash M <27716912+am357@users.noreply.github.com> Date: Tue, 13 Jun 2023 17:30:01 -0700 Subject: [PATCH] Address PR feedback: Remove constrained primitives --- partiql-types/src/lib.rs | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/partiql-types/src/lib.rs b/partiql-types/src/lib.rs index d17f9dfa..2819e521 100644 --- a/partiql-types/src/lib.rs +++ b/partiql-types/src/lib.rs @@ -64,25 +64,17 @@ pub enum StaticTypeKind { // Scalar Types Int, - Int8, - Int16, - Int32, - Int64, Bool, Decimal, - DecimalP(usize, usize), - Float32, - Float64, + Float64, String, - StringFixed(usize), - StringVarying(usize), // Container Type Struct(StructType), Bag(BagType), Array(ArrayType), - // TODO Add Sexp + // TODO Add Sexp, TIMESTAMP } #[derive(Debug, Clone)]