From e8526226ae8e34f455df7fd40677656ef2a6cc86 Mon Sep 17 00:00:00 2001 From: Conrad Ludgate Date: Fri, 11 Aug 2023 15:47:53 +0100 Subject: [PATCH] remove unnecessary comment --- proxy/src/http/sql_over_http.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/proxy/src/http/sql_over_http.rs b/proxy/src/http/sql_over_http.rs index 5bf850814c..0e7b6ca3fd 100644 --- a/proxy/src/http/sql_over_http.rs +++ b/proxy/src/http/sql_over_http.rs @@ -291,7 +291,6 @@ async fn query_to_json( ) -> anyhow::Result { let query_params = json_to_pg_text(&data.params)?; let row_stream = client - // TODO: query_raw_txt should be able to accept &str and Vec .query_raw_txt(&data.query, query_params) .await?;