You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Robert Stupp (JIRA)" <ji...@apache.org> on 2014/09/05 22:59:28 UTC

[jira] [Created] (CASSANDRA-7893) Allow indexing of individual UDT fields

Robert Stupp created CASSANDRA-7893:
---------------------------------------

             Summary: Allow indexing of individual UDT fields
                 Key: CASSANDRA-7893
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-7893
             Project: Cassandra
          Issue Type: Improvement
            Reporter: Robert Stupp


CASSANDRA-7423 introduces persisting of individual UDT fields.

Ticket's about to allow to create an index on a UDT field in a table.

Example:
{noformat}
CREATE TYPE foo (
   str     text,
   val    bigint
);
CREATE TABLE bar (
   pk     int PRIMARY KEY,
   udt    foo
);
CREATE INDEX bar_udt ON bar(udt.str);
{noformat}




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)