Move parse_update_count and delete util

This commit is contained in:
Steven Fackler
2016-03-03 21:21:00 -08:00
parent 16bc4b951d
commit f49cfe3ca5
3 changed files with 7 additions and 8 deletions

View File

@@ -93,7 +93,6 @@ mod md5;
mod message;
mod priv_io;
mod url;
mod util;
pub mod error;
pub mod io;
pub mod notification;

View File

@@ -11,7 +11,6 @@ use types::{SessionInfo, Type, ToSql};
use message::FrontendMessage::*;
use message::BackendMessage::*;
use message::WriteMessage;
use util;
use rows::{Rows, LazyRows};
use {bad_response, Connection, Transaction, StatementInternals, Result, RowsNew, InnerConnection,
SessionInfoNew, LazyRowsNew, DbErrorNew, ColumnNew, StatementInfo, TransactionInternals};
@@ -140,7 +139,7 @@ impl<'conn> Statement<'conn> {
return DbError::new(fields);
}
CommandComplete { tag } => {
num = util::parse_update_count(tag);
num = parse_update_count(tag);
break;
}
EmptyQueryResponse => {
@@ -321,7 +320,7 @@ impl<'conn> Statement<'conn> {
try!(info.conn.write_messages(&[CopyDone, Sync]));
let num = match try!(info.conn.read_message()) {
CommandComplete { tag } => util::parse_update_count(tag),
CommandComplete { tag } => parse_update_count(tag),
ErrorResponse { fields } => {
try!(info.conn.wait_for_ready());
return DbError::new(fields);
@@ -421,7 +420,7 @@ impl<'conn> Statement<'conn> {
}
BCopyDone => {}
CommandComplete { tag } => {
count = util::parse_update_count(tag);
count = parse_update_count(tag);
break;
}
ErrorResponse { fields } => {
@@ -567,3 +566,7 @@ impl Format {
}
}
}
fn parse_update_count(tag: String) -> u64 {
tag.split(' ').last().unwrap().parse().unwrap_or(0)
}

View File

@@ -1,3 +0,0 @@
pub fn parse_update_count(tag: String) -> u64 {
tag.split(' ').last().unwrap().parse().unwrap_or(0)
}