From 089637a3b854028626dfce61bc2dd6e5e050dc31 Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Thu, 18 Jul 2019 12:04:40 -0700 Subject: [PATCH] Remove fixed FIXME in bind.rs --- sqlx-postgres-protocol/src/bind.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/sqlx-postgres-protocol/src/bind.rs b/sqlx-postgres-protocol/src/bind.rs index 07ae3558..24c3c81e 100644 --- a/sqlx-postgres-protocol/src/bind.rs +++ b/sqlx-postgres-protocol/src/bind.rs @@ -1,8 +1,5 @@ use byteorder::{BigEndian, ByteOrder}; -// FIXME: Having structs here is breaking down. I think front-end messages should be -// simple functions that take the wbuf as a mut Vec - pub fn header(buf: &mut Vec, portal: &str, statement: &str, formats: &[u16]) -> (usize, usize) { buf.push(b'B');