From 07656200effd8a500c7828fc0491bb778c99bcb0 Mon Sep 17 00:00:00 2001 From: Mikhail Stepura Date: Mon, 24 Feb 2014 12:21:07 -0800 Subject: [PATCH] Decode TimestampType as DateType --- cassandra/cqltypes.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cassandra/cqltypes.py b/cassandra/cqltypes.py index 39294822..fece5ea8 100644 --- a/cassandra/cqltypes.py +++ b/cassandra/cqltypes.py @@ -502,6 +502,8 @@ class DateType(_CassandraType): return int64_pack(long(converted)) +class TimestampType(DateType): + pass class TimeUUIDType(DateType): typename = 'timeuuid'