Remove commented out stuff in types.rs

This commit is contained in:
Ryan Leckey 2019-08-06 12:54:28 -07:00
parent e2ace30dfd
commit 82c72c13c2

View File

@ -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;
// }