Skip to content

Commit

Permalink
Address PR feedback: Remove constrained primitives
Browse files Browse the repository at this point in the history
  • Loading branch information
am357 committed Jun 14, 2023
1 parent 911e839 commit 01716e6
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions partiql-types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down

0 comments on commit 01716e6

Please sign in to comment.