Remove unnecessary column_has_valid_sqlite_type impls

This commit is contained in:
John Gallagher
2016-05-15 15:32:59 -04:00
parent 79376a4ca9
commit 350dc59bb9
3 changed files with 0 additions and 24 deletions

View File

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