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 250F5200C32 for ; Thu, 23 Feb 2017 01:30:05 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 23AF7160B72; Thu, 23 Feb 2017 00:30:05 +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 5E79C160B62 for ; Thu, 23 Feb 2017 01:30:04 +0100 (CET) Received: (qmail 57997 invoked by uid 500); 23 Feb 2017 00:30:03 -0000 Mailing-List: contact dev-help@drill.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@drill.apache.org Delivered-To: mailing list dev@drill.apache.org Received: (qmail 57986 invoked by uid 99); 23 Feb 2017 00:30:03 -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; Thu, 23 Feb 2017 00:30:03 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 06237DFF09; Thu, 23 Feb 2017 00:30:02 +0000 (UTC) From: ppadma To: dev@drill.apache.org Reply-To: dev@drill.apache.org References: In-Reply-To: Subject: [GitHub] drill pull request #757: DRILL-5290: Provide an option to build operator tab... Content-Type: text/plain Message-Id: <20170223003003.06237DFF09@git1-us-west.apache.org> Date: Thu, 23 Feb 2017 00:30:02 +0000 (UTC) archived-at: Thu, 23 Feb 2017 00:30:05 -0000 Github user ppadma commented on a diff in the pull request: https://github.com/apache/drill/pull/757#discussion_r102611281 --- Diff: exec/java-exec/src/main/java/org/apache/drill/exec/ExecConstants.java --- @@ -413,4 +413,8 @@ String DYNAMIC_UDF_SUPPORT_ENABLED = "exec.udf.enable_dynamic_support"; BooleanValidator DYNAMIC_UDF_SUPPORT_ENABLED_VALIDATOR = new BooleanValidator(DYNAMIC_UDF_SUPPORT_ENABLED, true, true); + + String USE_DYNAMIC_UDFS = "exec.udf.use_dynamic"; --- End diff -- I did not use the existing option "exec.udf.enable_dynamic_support" because if that option is enabled and then disabled later, expectation is that dynamic UDFs added in that window continue to be available and working even after disabling. All other comments addressed. Please review new diffs. --- 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. ---