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); }