Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SPARK-50131][SQL] Add IN Subquery DataFrame API #50470

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

ueshin
Copy link
Member

@ueshin ueshin commented Mar 31, 2025

What changes were proposed in this pull request?

Adds IN Subquery DataFrame API.

The existing Column.isin will take Dataset/DataFrame and use it as IN subquery.

For example:

>>> df = spark.createDataFrame([(2, "Alice"), (5, "Bob"), (8, "Mike")], ["age", "name"])
>>> df.createOrReplaceTempView('t')

>>> # SELECT * FROM t WHERE age IN (SELECT * FROM range(6)) ORDER BY age
>>> df.where(df.age.isin(spark.range(6))).orderBy("age").show()
+---+-----+
|age| name|
+---+-----+
|  2|Alice|
|  5|  Bob|
+---+-----+

For multiple values to be compared, sf.struct will be used to tuple them:

>>> from pyspark.sql import functions as sf

>>> # SELECT * FROM t WHERE (age, name) IN (SELECT id, 'Bob' FROM range(6))
>>> df.where(sf.struct(df.age, df.name).isin(spark.range(6).select("id", sf.lit("Bob")))).show()
+---+----+
|age|name|
+---+----+
|  5| Bob|
+---+----+

Why are the changes needed?

The IN subquery was missing in DataFrame API.

Does this PR introduce any user-facing change?

Yes, Column.isin will take Dataset/DataFrame to use it as IN subquery.

How was this patch tested?

Added the related tests.

Was this patch authored or co-authored using generative AI tooling?

No.

from pyspark.sql.connect.dataframe import DataFrame

if len(cols) == 1 and isinstance(cols[0], DataFrame):
if isinstance(self._expr, UnresolvedFunction) and self._expr._name == "struct":
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

for the case col.isin(df), when the col is a struct column and df only contains a struct column, what will happen?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants