Return-Path: X-Original-To: apmail-cassandra-commits-archive@www.apache.org Delivered-To: apmail-cassandra-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id BA1E218856 for ; Wed, 3 Jun 2015 17:27:39 +0000 (UTC) Received: (qmail 9899 invoked by uid 500); 3 Jun 2015 17:27:39 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 9824 invoked by uid 500); 3 Jun 2015 17:27:39 -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 9741 invoked by uid 99); 3 Jun 2015 17:27:39 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Jun 2015 17:27:39 +0000 Date: Wed, 3 Jun 2015 17:27:39 +0000 (UTC) From: "Sam Tunnicliffe (JIRA)" To: commits@cassandra.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (CASSANDRA-9532) Provide access to select statement's real column definitions MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/CASSANDRA-9532?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14571363#comment-14571363 ] Sam Tunnicliffe commented on CASSANDRA-9532: -------------------------------------------- You're right that there isn't currently an easy way to map the columns in the result metadata to the original/underlying columns that were actually used to satisfy the query. I've been playing with something similar in this area, which will hopefully be useful here. I'll clean up the patch (need to tweak it slightly to work across versions 2.0 -> trunk) and attach it here in the next day or so. > Provide access to select statement's real column definitions > ------------------------------------------------------------ > > Key: CASSANDRA-9532 > URL: https://issues.apache.org/jira/browse/CASSANDRA-9532 > Project: Cassandra > Issue Type: Improvement > Reporter: mck > Assignee: mck > Fix For: 3.x, 2.1.x, 2.0.x, 2.2.x > > Attachments: cassandra-2.0-9532.txt, cassandra-2.1-9532.txt, cassandra-2.2-9532.txt, trunk-9532.txt > > > Currently there is no way to get access to the real ColumnDefinitions being used in a SelectStatement. > This information is there in > {{selectStatement.selection.columns}} but is private. > Giving public access would make it possible for third-party implementations of a {{QueryHandler}} to work accurately with the real columns being queried and not have to work-around column aliases (or when the rawSelectors don't map directly to ColumnDefinitions, eg in Selection.fromSelectors(..), like functions), which is what one has to do today with going through ResultSet.metadata.names. > This issue provides a very minimal patch to provide access to the already final and immutable fields. -- This message was sent by Atlassian JIRA (v6.3.4#6332)