Return-Path: X-Original-To: apmail-metamodel-dev-archive@minotaur.apache.org Delivered-To: apmail-metamodel-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id CBD3F174B9 for ; Wed, 25 Mar 2015 16:17:50 +0000 (UTC) Received: (qmail 17808 invoked by uid 500); 25 Mar 2015 16:17:47 -0000 Delivered-To: apmail-metamodel-dev-archive@metamodel.apache.org Received: (qmail 17775 invoked by uid 500); 25 Mar 2015 16:17:47 -0000 Mailing-List: contact dev-help@metamodel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@metamodel.apache.org Delivered-To: mailing list dev@metamodel.apache.org Received: (qmail 17764 invoked by uid 99); 25 Mar 2015 16:17:47 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Mar 2015 16:17:47 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 51E43E0D50; Wed, 25 Mar 2015 16:17:47 +0000 (UTC) From: narahari92 To: dev@metamodel.apache.org Reply-To: dev@metamodel.apache.org Message-ID: Subject: [GitHub] metamodel pull request: changing select(expression) method of Quer... Content-Type: text/plain Date: Wed, 25 Mar 2015 16:17:47 +0000 (UTC) GitHub user narahari92 opened a pull request: https://github.com/apache/metamodel/pull/11 changing select(expression) method of Query to support multiple columns ... This commit is related to issue METAMODEL - 125. This might not be the issue but it's annoying to have multiple select methods for each expression (ex. query.select("col1").select("max(col2)") especially if there are multiple such columns. This commit fixes this issue and now the above query can be specified as query.select("col1,max(col2)"). You can merge this pull request into a Git repository by running: $ git pull https://github.com/narahari92/metamodel master Alternatively you can review and apply these changes as the patch at: https://github.com/apache/metamodel/pull/11.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #11 ---- commit 4b7ade730734038503d29c5157fb842934f511a3 Author: Hosur Narahari Date: 2015-03-25T15:59:14Z changing select(expression) method of Query to support multiple columns and expressions in single string ---- --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---