From dev-return-3524-archive-asf-public=cust-asf.ponee.io@madlib.apache.org Thu Jul 12 20:45:20 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 7332A180654 for ; Thu, 12 Jul 2018 20:45:19 +0200 (CEST) Received: (qmail 16154 invoked by uid 500); 12 Jul 2018 18:45:18 -0000 Mailing-List: contact dev-help@madlib.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@madlib.apache.org Delivered-To: mailing list dev@madlib.apache.org Received: (qmail 16142 invoked by uid 99); 12 Jul 2018 18:45:17 -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, 12 Jul 2018 18:45:17 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C073BDFA59; Thu, 12 Jul 2018 18:45:17 +0000 (UTC) From: ArvindSridhar To: dev@madlib.apache.org Reply-To: dev@madlib.apache.org References: In-Reply-To: Subject: [GitHub] madlib pull request #291: Feature: Vector to Columns Content-Type: text/plain Message-Id: <20180712184517.C073BDFA59@git1-us-west.apache.org> Date: Thu, 12 Jul 2018 18:45:17 +0000 (UTC) Github user ArvindSridhar commented on a diff in the pull request: https://github.com/apache/madlib/pull/291#discussion_r202140243 --- Diff: src/ports/postgres/modules/utilities/test/unit_tests/test_utilities.py_in --- @@ -243,6 +243,9 @@ class UtilitiesTestCase(unittest.TestCase): self.assertFalse(s.is_valid_psql_type('boolean[]', s.INCLUDE_ARRAY | s.ONLY_ARRAY)) self.assertFalse(s.is_valid_psql_type('boolean', s.ONLY_ARRAY)) self.assertFalse(s.is_valid_psql_type('boolean[]', s.ONLY_ARRAY)) + self.assertTrue(s.is_valid_psql_type('boolean[]', s.ANY_ARRAY)) --- End diff -- Done, should be on PRs 292 and 293 ---