From 332a74ca2e6677396593867b4454475e4f90b64a Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Sat, 27 Mar 2021 17:15:13 -0700 Subject: [PATCH] chore(postgres): remove old todo comments --- sqlx-postgres/src/types/int.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/sqlx-postgres/src/types/int.rs b/sqlx-postgres/src/types/int.rs index 6608f486..bab3e16e 100644 --- a/sqlx-postgres/src/types/int.rs +++ b/sqlx-postgres/src/types/int.rs @@ -10,9 +10,6 @@ use crate::{PgOutput, PgRawValue, PgRawValueFormat, PgTypeId, PgTypeInfo, Postgr // https://www.postgresql.org/docs/current/datatype-numeric.html#DATATYPE-INT -// todo: allow encode/decode across different integer types -// todo: condense with a macro - // check that the incoming value is not too large or too small // to fit into the target SQL type fn ensure_not_too_large_or_too_small(value: i128, ty: &PgTypeInfo) -> encode::Result<()> {