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 0AF12200C25 for ; Fri, 24 Feb 2017 10:27:49 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 0965E160B69; Fri, 24 Feb 2017 09:27:49 +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 5398A160B5C for ; Fri, 24 Feb 2017 10:27:48 +0100 (CET) Received: (qmail 8882 invoked by uid 500); 24 Feb 2017 09:27:47 -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 8871 invoked by uid 99); 24 Feb 2017 09:27:47 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Feb 2017 09:27:47 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 1131318E5ED for ; Fri, 24 Feb 2017 09:27:47 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -2.347 X-Spam-Level: X-Spam-Status: No, score=-2.347 tagged_above=-999 required=6.31 tests=[RP_MATCHES_RCVD=-2.999, SPF_NEUTRAL=0.652] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id ZKM-E8UelK0e for ; Fri, 24 Feb 2017 09:27:46 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id 3C41A61F25 for ; Fri, 24 Feb 2017 09:27:46 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id C56EAE088A for ; Fri, 24 Feb 2017 09:27:45 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 5287F2414A for ; Fri, 24 Feb 2017 09:27:44 +0000 (UTC) Date: Fri, 24 Feb 2017 09:27:44 +0000 (UTC) From: "Stefan Podkowinski (JIRA)" To: commits@cassandra.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (CASSANDRA-13262) Incorrect cqlsh results when selecting same columns multiple times MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Fri, 24 Feb 2017 09:27:49 -0000 Stefan Podkowinski created CASSANDRA-13262: ---------------------------------------------- Summary: Incorrect cqlsh results when selecting same columns multiple times Key: CASSANDRA-13262 URL: https://issues.apache.org/jira/browse/CASSANDRA-13262 Project: Cassandra Issue Type: Bug Reporter: Stefan Podkowinski Priority: Minor Just stumbled over this on trunk: {quote} cqlsh:test1> select a, b, c from table1; a | b | c ---+------+----- 1 | b | 2 2 | null | 2.2 (2 rows) cqlsh:test1> select a, a, b, c from table1; a | a | b | c ---+------+-----+------ 1 | b | 2 | null 2 | null | 2.2 | null (2 rows) cqlsh:test1> select a, a, a, b, c from table1; a | a | a | b | c ---+------+---------------+------+------ 1 | b | 2.0 | null | null 2 | null | 2.20000004768 | null | null {quote} My guess is that his is on the Python side, but haven't really looked into it. -- This message was sent by Atlassian JIRA (v6.3.15#6346)