From 54be21c0ed42d0d7d04c6ef19e8ff5a676d9f848 Mon Sep 17 00:00:00 2001 From: Valerii Ponomarov Date: Fri, 25 Oct 2024 17:16:56 +0300 Subject: [PATCH] Update todo comment about supported data types 'Timestamp', 'timeuuid' and 'inet' data types are already supported. So, update approriate 'todo' comment with proper list of unsupported data types. --- src/scripting/bind.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/scripting/bind.rs b/src/scripting/bind.rs index 3f32f75..244874d 100644 --- a/src/scripting/bind.rs +++ b/src/scripting/bind.rs @@ -13,8 +13,7 @@ use itertools::*; fn to_scylla_value(v: &Value, typ: &ColumnType) -> Result { // TODO: add support for the following native CQL types: - // 'counter', 'date', 'decimal', 'duration', 'inet', 'time', - // 'timestamp', 'timeuuid' and 'variant'. + // 'counter', 'date', 'decimal', 'duration', 'time' and 'variant'. // Also, for the 'tuple'. match (v, typ) { (Value::Bool(v), ColumnType::Boolean) => Ok(CqlValue::Boolean(*v)),