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?;