From 82c72c13c23cc9fd5424516161e486cd2294eb82 Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Tue, 6 Aug 2019 12:54:28 -0700 Subject: [PATCH] Remove commented out stuff in types.rs --- src/types.rs | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/src/types.rs b/src/types.rs index eccbee60..7b002cbe 100644 --- a/src/types.rs +++ b/src/types.rs @@ -36,46 +36,22 @@ where pub struct Text; -// impl SqlType for Text { -// const OID: u32 = 25; -// } - // Numeric types // i16 pub struct SmallInt; -// impl SqlType for SmallInt { -// const OID: u32 = 21; -// } - // i32 pub struct Int; -// impl SqlType for Int { -// const OID: u32 = 23; -// } - // i64 pub struct BigInt; -// impl SqlType for BigInt { -// const OID: u32 = 20; -// } - // decimal? // TODO pub struct Decimal; // f32 pub struct Real; -// impl SqlType for Real { -// const OID: u32 = 700; -// } - // f64 pub struct Double; - -// impl SqlType for Double { -// const OID: u32 = 701; -// }