Implement DataRow and CommandComplete

This commit is contained in:
Ryan Leckey
2019-06-30 07:07:57 -07:00
parent cfe522034e
commit da42be7d0a
7 changed files with 177 additions and 18 deletions

View File

@@ -12,10 +12,18 @@ pub async fn query<'a: 'b, 'b>(conn: &'a mut Connection, query: &'b str) -> io::
// Do nothing
}
Message::DataRow(_) => {
// Do nothing (for now)
}
Message::ReadyForQuery(_) => {
break;
}
Message::CommandComplete(_) => {
// Do nothing (for now)
}
message => {
unimplemented!("received {:?} unimplemented message", message);
}