From 0cc168a966bf4dc11db6b61e6b5b5d6771031804 Mon Sep 17 00:00:00 2001 From: Brandon Williams Date: Mon, 18 Jun 2012 13:09:50 -0500 Subject: [PATCH] Fix cqlsh ASSUME broken by CASSANDRA-4198. Patch by paul cannon, reviewed by brandonwilliams for CASSANDRA-4352 --- bin/cqlsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/cqlsh b/bin/cqlsh index 06e0e132f3..fecd4729fe 100755 --- a/bin/cqlsh +++ b/bin/cqlsh @@ -901,10 +901,10 @@ class Shell(cmd.Cmd): HELP SELECT_LIMIT HELP CONSISTENCYLEVEL """ - ksname = parsed.get_binding('selectks') + ksname = parsed.get_binding('ksname') if ksname is not None: ksname = self.cql_unprotect_name(ksname) - cfname = self.cql_unprotect_name(parsed.get_binding('selectsource')) + cfname = self.cql_unprotect_name(parsed.get_binding('cfname')) decoder = self.determine_decoder_for(cfname, ksname=ksname) self.perform_statement(parsed.extract_orig(), decoder=decoder)