[
https://issues.apache.org/jira/browse/CASSANDRA-12749?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15551376#comment-15551376
]
Alex Petrov commented on CASSANDRA-12749:
-----------------------------------------
There is already an issue for that: [CASSANDRA-7826].
> Update a specific property of a UDT in list<udt>, from a table.
> ---------------------------------------------------------------
>
> Key: CASSANDRA-12749
> URL: https://issues.apache.org/jira/browse/CASSANDRA-12749
> Project: Cassandra
> Issue Type: Wish
> Components: CQL
> Environment: Development
> Reporter: Rajashekhar Sheela
> Priority: Critical
> Fix For: 3.0.6
>
>
> I have a table with set<udt> as following...
> CREATE TABLE IF NOT EXISTS CustomTemplate (
> name text,
> templateId uuid,
> serviceId uuid,
> tenants set<uuid>,
> templateXml text,
> xpath text,
> parameters list<frozen<TemplateParameter>>,
> PRIMARY KEY (templateId)
> );
> CREATE TYPE IF NOT EXISTS TemplateParameter (
> name text,
> label text,
> type text,
> displayType text,
> allowedValues list<text>
> );
> Sample Data:
> cqlsh:skyfall_customtemplate> select * from customtemplate ;
> templateid | name | parameters
> |
> serviceid | templatexml | tenants | xpath
> --------------------------------------+-----------------+------------------------------------------------------------------------------------------+--------------------------------------+-------------+---------+--------
> afd01de6-bba9-4417-ab79-6851077f2f84 | testMyTemplate2 | [{name: 'X_PARAM',
> label: null, type: 'String', displaytype: null, allowedvalues: null}] |
> 82d565cb-d286-4523-a377-add72af9b23f | xml | null | /xpath
> Requirement is:
> --------------------
> Update "displayType:" of the TemplateParameter whose name='X_PARAM' and
> templateId=afd01de6-bba9-4417-ab79-6851077f2f84.
> Not able to do this, please let know, how it can be done, if it is already
> possible.
> Thanks.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)