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 CBC32200C61 for ; Tue, 25 Apr 2017 23:33:09 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id CA43C160B8E; Tue, 25 Apr 2017 21:33:09 +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 1CFA5160BB3 for ; Tue, 25 Apr 2017 23:33:08 +0200 (CEST) Received: (qmail 93282 invoked by uid 500); 25 Apr 2017 21:33:08 -0000 Mailing-List: contact issues-help@spark.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@spark.apache.org Received: (qmail 93273 invoked by uid 99); 25 Apr 2017 21:33:08 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 25 Apr 2017 21:33:08 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id EF389C074C for ; Tue, 25 Apr 2017 21:33:07 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -100.002 X-Spam-Level: X-Spam-Status: No, score=-100.002 tagged_above=-999 required=6.31 tests=[RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id 0JzqSavCfRJm for ; Tue, 25 Apr 2017 21:33:05 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id 5202F5FC57 for ; Tue, 25 Apr 2017 21:33:05 +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 84816E0942 for ; Tue, 25 Apr 2017 21:33:04 +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 287B621D94 for ; Tue, 25 Apr 2017 21:33:04 +0000 (UTC) Date: Tue, 25 Apr 2017 21:33:04 +0000 (UTC) From: "Apache Spark (JIRA)" To: issues@spark.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Assigned] (SPARK-20463) Expose SPARK SQL <=> operator in PySpark MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Tue, 25 Apr 2017 21:33:10 -0000 [ https://issues.apache.org/jira/browse/SPARK-20463?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Apache Spark reassigned SPARK-20463: ------------------------------------ Assignee: (was: Apache Spark) > Expose SPARK SQL <=> operator in PySpark > ---------------------------------------- > > Key: SPARK-20463 > URL: https://issues.apache.org/jira/browse/SPARK-20463 > Project: Spark > Issue Type: Improvement > Components: PySpark > Affects Versions: 2.1.0 > Reporter: Michael Styles > > Expose the SPARK SQL '<=>' operator in Pyspark as a column function called *isNotDistinctFrom*. For example: > {panel} > {noformat} > data = [(10, 20), (30, 30), (40, None), (None, None)] > df2 = sc.parallelize(data).toDF("c1", "c2") > df2.where(df2["c1"].isNotDistinctFrom(df2["c2"]).collect()) > [Row(c1=30, c2=30), Row(c1=None, c2=None)] > {noformat} > {panel} -- This message was sent by Atlassian JIRA (v6.3.15#6346) --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org For additional commands, e-mail: issues-help@spark.apache.org