Return-Path: X-Original-To: apmail-cassandra-commits-archive@www.apache.org Delivered-To: apmail-cassandra-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 26867173E7 for ; Tue, 14 Apr 2015 10:14:13 +0000 (UTC) Received: (qmail 48798 invoked by uid 500); 14 Apr 2015 10:14:12 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 48758 invoked by uid 500); 14 Apr 2015 10:14:12 -0000 Mailing-List: contact commits-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cassandra.apache.org Delivered-To: mailing list commits@cassandra.apache.org Received: (qmail 48659 invoked by uid 99); 14 Apr 2015 10:14:12 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Apr 2015 10:14:12 +0000 Date: Tue, 14 Apr 2015 10:14:12 +0000 (UTC) From: "Robert Stupp (JIRA)" To: commits@cassandra.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (CASSANDRA-9186) AbstractType vs. CQL3Type loses frozen keyword MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Robert Stupp created CASSANDRA-9186: --------------------------------------- Summary: AbstractType vs. CQL3Type loses frozen keyword Key: CASSANDRA-9186 URL: https://issues.apache.org/jira/browse/CASSANDRA-9186 Project: Cassandra Issue Type: Bug Components: Core Reporter: Robert Stupp Priority: Minor Fix For: 3.0 {code} create keyspace functionmetadatatest with replication = {'class':'SimpleStrategy', 'replication_factor':1}; use functionmetadatatest ; CREATE TYPE udtx (x int); CREATE FUNCTION u_frozen(u frozen)RETURNS int LANGUAGE java AS 'return new Integer(0);'; SELECT function_name, signature, argument_types FROM system.schema_functions WHERE keyspace_name='functionmetadatatest'; function_name | signature | argument_types ---------------+------------------+-------------------------------------------------------------------------------------------------------------------------- u_frozen | ['udtx'] | ['org.apache.cassandra.db.marshal.UserType(functionmetadatatest,75647478,78:org.apache.cassandra.db.marshal.Int32Type)'] {code} Problem is that {{UserType}} and {{TupleType}} do not have a _frozen_ (or _isMultiCell_) attribute. A conversion from type to cql3type therefore loses the _frozen_ status. -- This message was sent by Atlassian JIRA (v6.3.4#6332)