Implement RowDescription

This commit is contained in:
Ryan Leckey
2019-06-30 06:35:30 -07:00
parent e8ecbeda36
commit cfe522034e
4 changed files with 184 additions and 1 deletions

View File

@@ -8,6 +8,10 @@ pub async fn query<'a: 'b, 'b>(conn: &'a mut Connection, query: &'b str) -> io::
while let Some(message) = conn.stream.next().await {
match message? {
Message::RowDescription(_) => {
// Do nothing
}
Message::ReadyForQuery(_) => {
break;
}