From cce2996cdeb78eadc8d7994e5ed810f5872d695e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Dziepak?= Date: Wed, 1 Jul 2015 10:18:02 +0200 Subject: [PATCH] cql3: enable inet type in cql grammar definition MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Paweł Dziepak --- cql3/Cql.g | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cql3/Cql.g b/cql3/Cql.g index 0c2635e1d9..59ae03c9ee 100644 --- a/cql3/Cql.g +++ b/cql3/Cql.g @@ -1327,9 +1327,7 @@ native_type returns [shared_ptr t] #endif | K_DOUBLE { $t = cql3_type::double_; } | K_FLOAT { $t = cql3_type::float_; } -#if 0 - | K_INET { $t = CQL3Type.Native.INET;} -#endif + | K_INET { $t = cql3_type::inet; } | K_INT { $t = cql3_type::int_; } | K_TEXT { $t = cql3_type::text; } | K_TIMESTAMP { $t = cql3_type::timestamp; }