From 335e591ab5c0cdfd123ed0fb9c48e7de19ed83f2 Mon Sep 17 00:00:00 2001 From: "chandr-andr (Kiselev Aleksandr)" Date: Fri, 18 Oct 2024 12:30:52 +0200 Subject: [PATCH] Removed debug info Signed-off-by: chandr-andr (Kiselev Aleksandr) --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/value_converter.rs | 2 -- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e7d49cc..389c28f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -988,7 +988,7 @@ dependencies = [ [[package]] name = "psqlpy" -version = "0.8.3" +version = "0.8.4" dependencies = [ "byteorder", "bytes", diff --git a/Cargo.toml b/Cargo.toml index f381d77..559a419 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "psqlpy" -version = "0.8.3" +version = "0.8.4" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/src/value_converter.rs b/src/value_converter.rs index bf7bc75..5d0763f 100644 --- a/src/value_converter.rs +++ b/src/value_converter.rs @@ -746,8 +746,6 @@ pub fn py_sequence_into_postgres_array( /// or value of the type is incorrect. #[allow(clippy::too_many_lines)] pub fn py_to_rust(parameter: &pyo3::Bound<'_, PyAny>) -> RustPSQLDriverPyResult { - println!("{:?}", parameter.get_type().name()?); - if parameter.is_none() { return Ok(PythonDTO::PyNone); }