Remove unnecessary column_has_valid_sqlite_type impl

This commit is contained in:
John Gallagher 2016-05-15 22:46:50 -05:00
parent b68e9e8a6f
commit 5038e2a705

View File

@ -40,10 +40,6 @@ impl FromSql for Value {
_ => Err(Error::InvalidColumnType),
}
}
unsafe fn column_has_valid_sqlite_type(_: *mut sqlite3_stmt, _: c_int) -> bool {
true // to avoid double check
}
}
#[cfg(test)]