Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id A5969200B32 for ; Tue, 24 May 2016 19:43:14 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id A467B16098E; Tue, 24 May 2016 17:43:14 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 2713C160A35 for ; Tue, 24 May 2016 19:43:14 +0200 (CEST) Received: (qmail 30629 invoked by uid 500); 24 May 2016 17:43:13 -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 30361 invoked by uid 99); 24 May 2016 17:43:13 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 May 2016 17:43:13 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 0E8812C1F6C for ; Tue, 24 May 2016 17:43:13 +0000 (UTC) Date: Tue, 24 May 2016 17:43:13 +0000 (UTC) From: "Tyler Hobbs (JIRA)" To: commits@cassandra.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (CASSANDRA-11664) Tab completion in cqlsh doesn't work for capitalized letters MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Tue, 24 May 2016 17:43:14 -0000 [ https://issues.apache.org/jira/browse/CASSANDRA-11664?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tyler Hobbs updated CASSANDRA-11664: ------------------------------------ Labels: cqlsh (was: ) > Tab completion in cqlsh doesn't work for capitalized letters > ------------------------------------------------------------ > > Key: CASSANDRA-11664 > URL: https://issues.apache.org/jira/browse/CASSANDRA-11664 > Project: Cassandra > Issue Type: Bug > Reporter: J.B. Langston > Assignee: Mahdi Mohammadi > Priority: Minor > Labels: cqlsh > > Tab completion in cqlsh doesn't work for capitalized letters, either in keyspace names or table names. Typing quotes and a corresponding capital letter should complete the table/keyspace name and the closing quote. > {code} > cqlsh> create keyspace "Test" WITH replication = {'class': 'SimpleStrategy', 'replication_factor': 1}; > cqlsh> use "Tes > cqlsh> use tes > cqlsh> use Test; > InvalidRequest: code=2200 [Invalid query] message="Keyspace 'test' does not exist" > cqlsh> use "Test"; > cqlsh:Test> drop keyspace "Test" > cqlsh:Test> create table "TestTable" (a text primary key, b text); > cqlsh:Test> select * from "TestTable"; > a | b > ---+--- > (0 rows) > cqlsh:Test> select * from "Test > {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)