[jira] [Commented] (CASSANDRA-7527) Bump CQL version and update doc for 2.1

2014-07-23 Thread Tyler Hobbs (JIRA)

[ 
https://issues.apache.org/jira/browse/CASSANDRA-7527?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14071982#comment-14071982
 ] 

Tyler Hobbs commented on CASSANDRA-7527:


Ah, I see what you're saying, [~khahn], thanks for the clarification.  I 
committed the fix as 4cdfa8515611e235b20457c39dd2c3795b1b0820.

bq. Will there be a CQL-2.1.html for the c* 2.1 doc CQL, or will CQL-2.0.html 
be overwritten?

There will be a new CQL-2.1.html, and CQL.html will link to it.  The existing 
CQL-2.0.html will stay.

bq. And again I was unable to find any links to CQL-2.0.html or CQL-1.2.html on 
the Apache site. I mean, it would be nice to have a clean web link to consult 
2.0 doc even when 2.1 goes GA. I tried to google Cassandra 2.0 cql doc, but 
it doesn't find that CQL-2.0.html page or find the 1.2 page when I search for 
1.2.

I can put up links somewhere.  Where do you suggest?

bq. Finally, will this official Apache C* 2.1 CQL doc be available on the web 
real soon, or only at 2.1 GA?

I planned to put it up for 2.1 GA, but it wouldn't hurt to go ahead and put it 
up as CQL-2.1.html and only switch the CQL.html link at 2.1 GA.

bq. I don't know who updates that Apache site.

It's usually me or Sylvain these days.

 Bump CQL version and update doc for 2.1
 ---

 Key: CASSANDRA-7527
 URL: https://issues.apache.org/jira/browse/CASSANDRA-7527
 Project: Cassandra
  Issue Type: Bug
Reporter: Sylvain Lebresne
Assignee: Tyler Hobbs
 Fix For: 2.1.0

 Attachments: 7527-v2.txt, 7527.txt


 It appears we forgot to bump the CQL version for new 2.1 features (UDT, tuple 
 type, collection indexing), nor did we update the textile doc



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CASSANDRA-7527) Bump CQL version and update doc for 2.1

2014-07-22 Thread Tyler Hobbs (JIRA)

[ 
https://issues.apache.org/jira/browse/CASSANDRA-7527?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14070537#comment-14070537
 ] 

Tyler Hobbs commented on CASSANDRA-7527:


bq. Is keyspacename misplaced here?

I don't think so, but maybe I'm missing something obvious?

 Bump CQL version and update doc for 2.1
 ---

 Key: CASSANDRA-7527
 URL: https://issues.apache.org/jira/browse/CASSANDRA-7527
 Project: Cassandra
  Issue Type: Bug
Reporter: Sylvain Lebresne
Assignee: Tyler Hobbs
 Fix For: 2.1.0

 Attachments: 7527-v2.txt, 7527.txt


 It appears we forgot to bump the CQL version for new 2.1 features (UDT, tuple 
 type, collection indexing), nor did we update the textile doc



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CASSANDRA-7527) Bump CQL version and update doc for 2.1

2014-07-22 Thread Kristine Hahn (JIRA)

[ 
https://issues.apache.org/jira/browse/CASSANDRA-7527?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14070591#comment-14070591
 ] 

Kristine Hahn commented on CASSANDRA-7527:
--

@tyler, shouldn't the keyspacename dot be next to the table name (after ON), 
not next to the name of the index? 

CREATE CUSTOM INDEX IF NOT EXISTS index_name
ON keyspace_name.table_name ( KEYS ( column_name ) )
(USING class_name) (WITH OPTIONS = map)

The tab completion doesn't show that you can preface an index name with a 
keyspace name using the dot notation.

 Bump CQL version and update doc for 2.1
 ---

 Key: CASSANDRA-7527
 URL: https://issues.apache.org/jira/browse/CASSANDRA-7527
 Project: Cassandra
  Issue Type: Bug
Reporter: Sylvain Lebresne
Assignee: Tyler Hobbs
 Fix For: 2.1.0

 Attachments: 7527-v2.txt, 7527.txt


 It appears we forgot to bump the CQL version for new 2.1 features (UDT, tuple 
 type, collection indexing), nor did we update the textile doc



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CASSANDRA-7527) Bump CQL version and update doc for 2.1

2014-07-22 Thread Jack Krupansky (JIRA)

[ 
https://issues.apache.org/jira/browse/CASSANDRA-7527?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14070795#comment-14070795
 ] 

Jack Krupansky commented on CASSANDRA-7527:
---

What is the official Apache landing place for the CQL doc? If I google 
cassandra cql3, I find:

https://cassandra.apache.org/doc/cql3/CQL.html

But I don't find any links to that web page on the Apache Cassandra site - just 
links to the DataStax doc.

Also if I look in the doc/CQL3 directory on the Apache site I see the following

{code}
CQL-1.2.html2014-03-19 16:47   81K  
CQL-2.0.html2014-06-30 09:09   92K  
CQL.css 2012-07-13 09:15  2.0K  
CQL.html2014-06-30 09:09   92K 
{code}

Will there be a CQL-2.1.html for the c\* 2.1 doc CQL, or will CQL-2.0.html be 
overwritten?

And again I was unable to find any links to CQL-2.0.html or CQL-1.2.html on the 
Apache site. I mean, it would be nice to have a clean web link to consult 2.0 
doc even when 2.1 goes GA. I tried to google Cassandra 2.0 cql doc, but it 
doesn't find that CQL-2.0.html page or find the 1.2 page when I search for 1.2.

Finally, will this official Apache C\* 2.1 CQL doc be available on the web real 
soon, or only at 2.1 GA?



 Bump CQL version and update doc for 2.1
 ---

 Key: CASSANDRA-7527
 URL: https://issues.apache.org/jira/browse/CASSANDRA-7527
 Project: Cassandra
  Issue Type: Bug
Reporter: Sylvain Lebresne
Assignee: Tyler Hobbs
 Fix For: 2.1.0

 Attachments: 7527-v2.txt, 7527.txt


 It appears we forgot to bump the CQL version for new 2.1 features (UDT, tuple 
 type, collection indexing), nor did we update the textile doc



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CASSANDRA-7527) Bump CQL version and update doc for 2.1

2014-07-22 Thread Kristine Hahn (JIRA)

[ 
https://issues.apache.org/jira/browse/CASSANDRA-7527?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14070890#comment-14070890
 ] 

Kristine Hahn commented on CASSANDRA-7527:
--

Hi Jack,
It's my understanding that https://cassandra.apache.org/doc/cql3/CQL.html is
the official CQL doc. The C* team calls it the spec. That doc is
installed in textile format with Cassandra source in the docs/cql directory.

But I don't find any links to that web page on the Apache Cassandra site -


I don't know who updates that Apache site. I don't think DataStax has
anything to do with it. I'd send criticisms to Jonathan. Maybe you could
send criticisms to the Apache site webmaster, but I wouldn't say anything
about the link to the Datastax doc (don't want anybody open source maniac
removing it!)

Yes, the 2.1 docs will be released when 2.1 is released (on July 28 I
heard).

Kris




On Tue, Jul 22, 2014 at 1:08 PM, Jack Krupansky (JIRA) j...@apache.org
wrote:



 Bump CQL version and update doc for 2.1
 ---

 Key: CASSANDRA-7527
 URL: https://issues.apache.org/jira/browse/CASSANDRA-7527
 Project: Cassandra
  Issue Type: Bug
Reporter: Sylvain Lebresne
Assignee: Tyler Hobbs
 Fix For: 2.1.0

 Attachments: 7527-v2.txt, 7527.txt


 It appears we forgot to bump the CQL version for new 2.1 features (UDT, tuple 
 type, collection indexing), nor did we update the textile doc



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CASSANDRA-7527) Bump CQL version and update doc for 2.1

2014-07-19 Thread Kristine Hahn (JIRA)

[ 
https://issues.apache.org/jira/browse/CASSANDRA-7527?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14067627#comment-14067627
 ] 

Kristine Hahn commented on CASSANDRA-7527:
--

Is keyspacename misplaced here?
{quote}
-bc(syntax). create-index-stmt ::= CREATE ( CUSTOM )? INDEX ( IF NOT EXISTS 
)? ( ( keyspacename '.' )? indexname )?
 . . .
{quote}

 Bump CQL version and update doc for 2.1
 ---

 Key: CASSANDRA-7527
 URL: https://issues.apache.org/jira/browse/CASSANDRA-7527
 Project: Cassandra
  Issue Type: Bug
Reporter: Sylvain Lebresne
Assignee: Tyler Hobbs
 Fix For: 2.1.0

 Attachments: 7527-v2.txt, 7527.txt


 It appears we forgot to bump the CQL version for new 2.1 features (UDT, tuple 
 type, collection indexing), nor did we update the textile doc



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CASSANDRA-7527) Bump CQL version and update doc for 2.1

2014-07-15 Thread Aleksey Yeschenko (JIRA)

[ 
https://issues.apache.org/jira/browse/CASSANDRA-7527?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14062586#comment-14062586
 ] 

Aleksey Yeschenko commented on CASSANDRA-7527:
--

v2 LGTM, +1

 Bump CQL version and update doc for 2.1
 ---

 Key: CASSANDRA-7527
 URL: https://issues.apache.org/jira/browse/CASSANDRA-7527
 Project: Cassandra
  Issue Type: Bug
Reporter: Sylvain Lebresne
Assignee: Tyler Hobbs
 Fix For: 2.1.0

 Attachments: 7527-v2.txt, 7527.txt


 It appears we forgot to bump the CQL version for new 2.1 features (UDT, tuple 
 type, collection indexing), nor did we update the textile doc



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CASSANDRA-7527) Bump CQL version and update doc for 2.1

2014-07-14 Thread Aleksey Yeschenko (JIRA)

[ 
https://issues.apache.org/jira/browse/CASSANDRA-7527?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14060831#comment-14060831
 ] 

Aleksey Yeschenko commented on CASSANDRA-7527:
--

I think CASSANDRA-7314 is missing from the 3.2.0 news list. Other than that 
LGTM.

 Bump CQL version and update doc for 2.1
 ---

 Key: CASSANDRA-7527
 URL: https://issues.apache.org/jira/browse/CASSANDRA-7527
 Project: Cassandra
  Issue Type: Bug
Reporter: Sylvain Lebresne
Assignee: Tyler Hobbs
 Fix For: 2.1.0

 Attachments: 7527.txt


 It appears we forgot to bump the CQL version for new 2.1 features (UDT, tuple 
 type, collection indexing), nor did we update the textile doc



--
This message was sent by Atlassian JIRA
(v6.2#6252)