Make find_col_named a default method

This commit is contained in:
Steven Fackler 2013-10-12 23:12:53 -07:00
parent 9253635fef
commit 4299b1a5a2

View File

@ -806,7 +806,11 @@ pub trait PostgresStatement {
/// Returns the index of the first result column with the specified name,
/// or `None` if not found.
fn find_col_named(&self, col: &str) -> Option<uint>;
fn find_col_named(&self, col: &str) -> Option<uint> {
do self.result_descriptions().iter().position |desc| {
desc.name.as_slice() == col
}
}
}
/// A statement prepared outside of a transaction.
@ -957,12 +961,6 @@ impl<'self> PostgresStatement for NormalPostgresStatement<'self> {
-> Result<PostgresResult<'a>, PostgresDbError> {
self.try_lazy_query(0, params)
}
fn find_col_named(&self, col: &str) -> Option<uint> {
do self.result_desc.iter().position |desc| {
desc.name.as_slice() == col
}
}
}
/// Information about a column of the result of a query.
@ -1010,10 +1008,6 @@ impl<'self> PostgresStatement for TransactionalPostgresStatement<'self> {
-> Result<PostgresResult<'a>, PostgresDbError> {
self.stmt.try_query(params)
}
fn find_col_named(&self, col: &str) -> Option<uint> {
self.stmt.find_col_named(col)
}
}
impl<'self> TransactionalPostgresStatement<'self> {