mirror of
https://github.com/launchbadge/sqlx.git
synced 2026-03-20 00:54:18 +00:00
Implement RowDescription
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user