robin-sparkless 4.0.0

PySpark-like DataFrame API in Rust on Polars; no JVM.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
"""
Unit tests for Issue #331: array_contains() join condition. Uses get_spark_imports from fixture only.
"""

from tests.fixtures.spark_imports import get_spark_imports

_imports = get_spark_imports()
SparkSession = _imports.SparkSession
F = _imports.F
Window = _imports.Window
StringType = _imports.StringType
StructType = _imports.StructType
StructField = _imports.StructField
IntegerType = _imports.IntegerType
LongType = _imports.LongType
ArrayType = _imports.ArrayType


class TestIssue331ArrayContainsJoin:
    """Test array_contains() as join condition."""

    def test_array_contains_join_basic(self):
        """Test basic array_contains join."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": [1, 2, 3]},
                    {"Name": "Bob", "IDs": [4, 5, 6]},
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 3},
                    {"Dept": "B", "ID": 5},
                ]
            )

            result = df1.join(df2, on=F.array_contains(df1.IDs, df2.ID), how="left")
            rows = result.collect()

            assert len(rows) == 2
            assert rows[0]["Name"] == "Alice"
            assert rows[0]["IDs"] == [1, 2, 3]
            assert rows[0]["Dept"] == "A"
            assert rows[0]["ID"] == 3
            assert rows[1]["Name"] == "Bob"
            assert rows[1]["IDs"] == [4, 5, 6]
            assert rows[1]["Dept"] == "B"
            assert rows[1]["ID"] == 5
        finally:
            spark.stop()

    def test_array_contains_join_inner(self):
        """Test array_contains join with inner join type."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": [1, 2, 3]},
                    {"Name": "Bob", "IDs": [4, 5, 6]},
                    {"Name": "Charlie", "IDs": [7, 8, 9]},  # No match
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 3},
                    {"Dept": "B", "ID": 5},
                ]
            )

            result = df1.join(df2, on=F.array_contains(df1.IDs, df2.ID), how="inner")
            rows = result.collect()

            assert len(rows) == 2
            names = {row["Name"] for row in rows}
            assert names == {"Alice", "Bob"}
        finally:
            spark.stop()

    def test_array_contains_join_left(self):
        """Test array_contains join with left join type."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": [1, 2, 3]},
                    {"Name": "Bob", "IDs": [4, 5, 6]},
                    {"Name": "Charlie", "IDs": [7, 8, 9]},  # No match
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 3},
                    {"Dept": "B", "ID": 5},
                ]
            )

            result = df1.join(df2, on=F.array_contains(df1.IDs, df2.ID), how="left")
            rows = result.collect()

            assert len(rows) == 3
            # Find Charlie row (no match)
            charlie_row = next(row for row in rows if row["Name"] == "Charlie")
            assert charlie_row["Dept"] is None
            assert charlie_row["ID"] is None
        finally:
            spark.stop()

    def test_array_contains_join_multiple_matches(self):
        """Test array_contains join with multiple matches."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": [1, 2, 3]},
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 1},
                    {"Dept": "B", "ID": 2},
                    {"Dept": "C", "ID": 3},
                ]
            )

            result = df1.join(df2, on=F.array_contains(df1.IDs, df2.ID), how="inner")
            rows = result.collect()

            assert len(rows) == 3
            # All rows should have Alice's name and IDs
            for row in rows:
                assert row["Name"] == "Alice"
                assert row["IDs"] == [1, 2, 3]
            # Check all depts are present
            depts = {row["Dept"] for row in rows}
            assert depts == {"A", "B", "C"}
        finally:
            spark.stop()

    def test_array_contains_join_no_matches(self):
        """Test array_contains join with no matches."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": [1, 2, 3]},
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 10},  # No match
                    {"Dept": "B", "ID": 20},  # No match
                ]
            )

            # Inner join with no matches should return empty
            result = df1.join(df2, on=F.array_contains(df1.IDs, df2.ID), how="inner")
            rows = result.collect()
            assert len(rows) == 0

            # Left join with no matches should return left rows with nulls
            result2 = df1.join(df2, on=F.array_contains(df1.IDs, df2.ID), how="left")
            rows2 = result2.collect()
            assert len(rows2) == 1
            assert rows2[0]["Name"] == "Alice"
            assert rows2[0]["Dept"] is None
            assert rows2[0]["ID"] is None
        finally:
            spark.stop()

    def test_array_contains_join_null_arrays(self):
        """Test array_contains join with null arrays."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": [1, 2, 3]},
                    {"Name": "Bob", "IDs": None},
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 3},
                ]
            )

            result = df1.join(df2, on=F.array_contains(df1.IDs, df2.ID), how="left")
            rows = result.collect()

            assert len(rows) >= 1
            # Alice should match
            alice_row = next(row for row in rows if row["Name"] == "Alice")
            assert alice_row["Dept"] == "A"
            # Bob with null array should not match (or match with null)
            bob_rows = [row for row in rows if row["Name"] == "Bob"]
            if bob_rows:
                assert bob_rows[0]["Dept"] is None
        finally:
            spark.stop()

    def test_array_contains_join_null_ids(self):
        """Test array_contains join with null IDs."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": [1, 2, 3]},
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 3},
                    {"Dept": "B", "ID": None},
                ]
            )

            result = df1.join(df2, on=F.array_contains(df1.IDs, df2.ID), how="left")
            rows = result.collect()

            # Should have at least one match (ID=3)
            assert len(rows) >= 1
            matching_rows = [row for row in rows if row["Dept"] == "A"]
            assert len(matching_rows) >= 1
        finally:
            spark.stop()

    def test_array_contains_join_right(self):
        """Test array_contains join with right join type."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": [1, 2, 3]},
                    {"Name": "Bob", "IDs": [4, 5, 6]},
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 3},
                    {"Dept": "B", "ID": 5},
                    {"Dept": "C", "ID": 10},  # No match
                ]
            )

            result = df1.join(df2, on=F.array_contains(df1.IDs, df2.ID), how="right")
            rows = result.collect()

            # Should include all right rows
            assert len(rows) >= 2
            depts = {row["Dept"] for row in rows}
            assert "A" in depts
            assert "B" in depts
        finally:
            spark.stop()

    def test_array_contains_join_outer(self):
        """Test array_contains join with outer join type."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": [1, 2, 3]},
                    {"Name": "Bob", "IDs": [4, 5, 6]},
                    {"Name": "Charlie", "IDs": [7, 8, 9]},  # No match
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 3},
                    {"Dept": "B", "ID": 5},
                    {"Dept": "C", "ID": 10},  # No match
                ]
            )

            result = df1.join(df2, on=F.array_contains(df1.IDs, df2.ID), how="outer")
            rows = result.collect()

            # Should include matches and unmatched rows from both sides
            assert len(rows) >= 2
            names = {row["Name"] for row in rows if row["Name"] is not None}
            assert "Alice" in names
            assert "Bob" in names
        finally:
            spark.stop()

    def test_array_contains_join_with_select(self):
        """Test array_contains join followed by select."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": [1, 2, 3]},
                    {"Name": "Bob", "IDs": [4, 5, 6]},
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 3},
                    {"Dept": "B", "ID": 5},
                ]
            )

            result = df1.join(
                df2, on=F.array_contains(df1.IDs, df2.ID), how="left"
            ).select("Name", "Dept")
            rows = result.collect()

            assert len(rows) == 2
            assert rows[0]["Name"] == "Alice"
            assert rows[0]["Dept"] == "A"
        finally:
            spark.stop()

    def test_array_contains_join_with_filter(self):
        """Test array_contains join followed by filter."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": [1, 2, 3]},
                    {"Name": "Bob", "IDs": [4, 5, 6]},
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 3},
                    {"Dept": "B", "ID": 5},
                ]
            )

            result = df1.join(
                df2, on=F.array_contains(df1.IDs, df2.ID), how="left"
            ).filter(F.col("Dept") == "A")
            rows = result.collect()

            assert len(rows) == 1
            assert rows[0]["Name"] == "Alice"
            assert rows[0]["Dept"] == "A"
        finally:
            spark.stop()

    def test_array_contains_join_column_name_conflicts(self):
        """Test array_contains join when DataFrames have column name conflicts."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": [1, 2, 3], "Value": 10},
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Name": "Bob", "ID": 3, "Value": 20},
                ]
            )

            result = df1.join(df2, on=F.array_contains(df1.IDs, df2.ID), how="inner")
            rows = result.collect()

            assert len(rows) == 1
            # Both Name and Value columns should be present (may be from left or right)
            assert "Name" in rows[0]
            assert "Value" in rows[0]
        finally:
            spark.stop()

    def test_array_contains_join_empty_dataframes(self):
        """Test array_contains join with empty DataFrames."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            schema1 = StructType(
                [
                    StructField("Name", StringType(), True),
                    StructField("IDs", ArrayType(IntegerType()), True),
                ]
            )
            schema2 = StructType(
                [
                    StructField("Dept", StringType(), True),
                    StructField("ID", IntegerType(), True),
                ]
            )

            df1 = spark.createDataFrame([], schema=schema1)
            df2 = spark.createDataFrame([], schema=schema2)

            result = df1.join(df2, on=F.array_contains(df1.IDs, df2.ID), how="inner")
            rows = result.collect()

            assert len(rows) == 0
        finally:
            spark.stop()

    def test_array_contains_join_backward_compatibility(self):
        """Test that regular column-based joins still work (backward compatibility)."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "ID": 1},
                    {"Name": "Bob", "ID": 2},
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 1},
                    {"Dept": "B", "ID": 2},
                ]
            )

            # Regular column-based join should still work
            result = df1.join(df2, on="ID", how="inner")
            rows = result.collect()

            assert len(rows) == 2
            assert rows[0]["Name"] == "Alice"
            assert rows[0]["Dept"] == "A"
        finally:
            spark.stop()

    def test_array_contains_join_empty_arrays(self):
        """Test array_contains join with empty arrays."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": []},  # Empty array
                    {"Name": "Bob", "IDs": [1, 2, 3]},
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 1},
                ]
            )

            result = df1.join(df2, on=F.array_contains(df1.IDs, df2.ID), how="left")
            rows = result.collect()

            assert len(rows) == 2
            # Alice with empty array should not match
            alice_row = next(row for row in rows if row["Name"] == "Alice")
            assert alice_row["Dept"] is None
            assert alice_row["ID"] is None
            # Bob should match
            bob_row = next(row for row in rows if row["Name"] == "Bob")
            assert bob_row["Dept"] == "A"
        finally:
            spark.stop()

    def test_array_contains_join_duplicate_values(self):
        """Test array_contains join with arrays containing duplicate values."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": [1, 1, 2, 2, 3]},  # Duplicates
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 1},
                    {"Dept": "B", "ID": 2},
                ]
            )

            result = df1.join(df2, on=F.array_contains(df1.IDs, df2.ID), how="inner")
            rows = result.collect()

            assert len(rows) == 2
            depts = {row["Dept"] for row in rows}
            assert depts == {"A", "B"}
        finally:
            spark.stop()

    def test_array_contains_join_string_arrays(self):
        """Test array_contains join with string arrays."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "Tags": ["python", "spark", "data"]},
                    {"Name": "Bob", "Tags": ["java", "scala"]},
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Skill": "Python", "Tag": "python"},
                    {"Skill": "Java", "Tag": "java"},
                ]
            )

            result = df1.join(df2, on=F.array_contains(df1.Tags, df2.Tag), how="left")
            rows = result.collect()

            assert len(rows) == 2
            alice_row = next(row for row in rows if row["Name"] == "Alice")
            assert alice_row["Skill"] == "Python"
            bob_row = next(row for row in rows if row["Name"] == "Bob")
            assert bob_row["Skill"] == "Java"
        finally:
            spark.stop()

    def test_array_contains_join_float_arrays(self):
        """Test array_contains join with float arrays."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "Values": [1.5, 2.5, 3.5]},
                    {"Name": "Bob", "Values": [4.0, 5.0]},
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Category": "A", "Value": 2.5},
                    {"Category": "B", "Value": 5.0},
                ]
            )

            result = df1.join(
                df2, on=F.array_contains(df1.Values, df2.Value), how="left"
            )
            rows = result.collect()

            assert len(rows) == 2
            alice_row = next(row for row in rows if row["Name"] == "Alice")
            assert alice_row["Category"] == "A"
            bob_row = next(row for row in rows if row["Name"] == "Bob")
            assert bob_row["Category"] == "B"
        finally:
            spark.stop()

    def test_array_contains_join_large_arrays(self):
        """Test array_contains join with large arrays."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            # Create array with 100 elements
            large_array = list(range(1, 101))
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": large_array},
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 50},  # Middle of array
                    {"Dept": "B", "ID": 1},  # First element
                    {"Dept": "C", "ID": 100},  # Last element
                ]
            )

            result = df1.join(df2, on=F.array_contains(df1.IDs, df2.ID), how="inner")
            rows = result.collect()

            assert len(rows) == 3
            depts = {row["Dept"] for row in rows}
            assert depts == {"A", "B", "C"}
        finally:
            spark.stop()

    def test_array_contains_join_with_where_clause(self):
        """Test array_contains join combined with where/filter conditions."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": [1, 2, 3], "Age": 25},
                    {"Name": "Bob", "IDs": [4, 5, 6], "Age": 30},
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 3},
                    {"Dept": "B", "ID": 5},
                ]
            )

            result = df1.join(
                df2, on=F.array_contains(df1.IDs, df2.ID), how="left"
            ).filter(F.col("Age") > 25)
            rows = result.collect()

            assert len(rows) == 1
            assert rows[0]["Name"] == "Bob"
            assert rows[0]["Dept"] == "B"
        finally:
            spark.stop()

    def test_array_contains_join_with_aggregation(self):
        """Test array_contains join followed by aggregation."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": [1, 2, 3]},
                    {"Name": "Bob", "IDs": [4, 5, 6]},
                    {"Name": "Charlie", "IDs": [1, 2, 3]},
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 3},
                    {"Dept": "B", "ID": 5},
                ]
            )

            result = (
                df1.join(df2, on=F.array_contains(df1.IDs, df2.ID), how="left")
                .groupBy("Dept")
                .agg(F.count("Name").alias("Count"))
            )
            rows = result.collect()

            # Should have counts for each dept
            assert len(rows) >= 1
            dept_counts = {
                row["Dept"]: row["Count"] for row in rows if row["Dept"] is not None
            }
            assert "A" in dept_counts
            assert "B" in dept_counts
        finally:
            spark.stop()

    def test_array_contains_join_with_window_functions(self):
        """Test array_contains join with window functions."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": [1, 2, 3], "Score": 100},
                    {"Name": "Bob", "IDs": [4, 5, 6], "Score": 90},
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 3},
                    {"Dept": "B", "ID": 5},
                ]
            )

            window = Window.partitionBy("Dept").orderBy(F.col("Score").desc())
            result = df1.join(
                df2, on=F.array_contains(df1.IDs, df2.ID), how="left"
            ).withColumn("Rank", F.row_number().over(window))
            rows = result.collect()

            assert len(rows) == 2
            for row in rows:
                assert "Rank" in row
                assert row["Rank"] == 1  # Each dept has one row
        finally:
            spark.stop()

    def test_array_contains_join_with_union(self):
        """Test array_contains join with union operations."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": [1, 2, 3]},
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 3},
                ]
            )

            df3 = spark.createDataFrame(
                [
                    {"Name": "Bob", "IDs": [4, 5, 6]},
                ]
            )

            result1 = df1.join(df2, on=F.array_contains(df1.IDs, df2.ID), how="left")
            result2 = df3.join(df2, on=F.array_contains(df3.IDs, df2.ID), how="left")
            # Use unionByName to handle potential column order differences
            combined = result1.unionByName(result2, allowMissingColumns=True)
            rows = combined.collect()

            assert len(rows) == 2
            names = {row["Name"] for row in rows}
            assert names == {"Alice", "Bob"}
        finally:
            spark.stop()

    def test_array_contains_join_with_distinct(self):
        """Test array_contains join with distinct operation."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": [1, 2, 3], "Value": 10},
                    {"Name": "Alice", "IDs": [1, 2, 3], "Value": 10},  # Duplicate
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 3},
                ]
            )

            result = (
                df1.join(df2, on=F.array_contains(df1.IDs, df2.ID), how="left")
                .select(
                    "Name", "Dept", "ID", "Value"
                )  # Select specific columns to avoid array distinct issues
                .distinct()
            )
            rows = result.collect()

            # Should have only one row after distinct
            assert len(rows) == 1
            assert rows[0]["Name"] == "Alice"
        finally:
            spark.stop()

    def test_array_contains_join_with_limit(self):
        """Test array_contains join with limit operation."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": [1, 2, 3]},
                    {"Name": "Bob", "IDs": [4, 5, 6]},
                    {"Name": "Charlie", "IDs": [7, 8, 9]},
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 3},
                    {"Dept": "B", "ID": 5},
                ]
            )

            result = df1.join(
                df2, on=F.array_contains(df1.IDs, df2.ID), how="left"
            ).limit(1)
            rows = result.collect()

            assert len(rows) == 1
        finally:
            spark.stop()

    def test_array_contains_join_multiple_conditions_same_df(self):
        """Test array_contains join where same left row matches multiple right rows."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": [1, 2, 3, 4, 5]},
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 1},
                    {"Dept": "B", "ID": 2},
                    {"Dept": "C", "ID": 3},
                    {"Dept": "D", "ID": 4},
                    {"Dept": "E", "ID": 5},
                ]
            )

            result = df1.join(df2, on=F.array_contains(df1.IDs, df2.ID), how="inner")
            rows = result.collect()

            assert len(rows) == 5
            depts = {row["Dept"] for row in rows}
            assert depts == {"A", "B", "C", "D", "E"}
            # All rows should have Alice's name
            for row in rows:
                assert row["Name"] == "Alice"
        finally:
            spark.stop()

    def test_array_contains_join_with_nested_select(self):
        """Test array_contains join with nested select expressions."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": [1, 2, 3]},
                    {"Name": "Bob", "IDs": [4, 5, 6]},
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 3},
                    {"Dept": "B", "ID": 5},
                ]
            )

            result = df1.join(
                df2, on=F.array_contains(df1.IDs, df2.ID), how="left"
            ).select(
                F.col("Name"),
                F.col("Dept").alias("Department"),
                F.col("ID").alias("MatchedID"),
            )
            rows = result.collect()

            assert len(rows) == 2
            assert "Name" in rows[0]
            assert "Department" in rows[0]
            assert "MatchedID" in rows[0]
        finally:
            spark.stop()

    def test_array_contains_join_with_case_when(self):
        """Test array_contains join with case/when expressions."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": [1, 2, 3]},
                    {"Name": "Bob", "IDs": [4, 5, 6]},
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 3},
                    {"Dept": "B", "ID": 5},
                ]
            )

            result = df1.join(
                df2, on=F.array_contains(df1.IDs, df2.ID), how="left"
            ).withColumn(
                "Status",
                F.when(F.col("Dept").isNotNull(), "Matched").otherwise("NoMatch"),
            )
            rows = result.collect()

            assert len(rows) == 2
            for row in rows:
                assert "Status" in row
                if row["Dept"] is not None:
                    assert row["Status"] == "Matched"
                else:
                    assert row["Status"] == "NoMatch"
        finally:
            spark.stop()

    def test_array_contains_join_with_coalesce(self):
        """Test array_contains join with coalesce function."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": [1, 2, 3]},
                    {"Name": "Bob", "IDs": [4, 5, 6]},
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 3},
                    {"Dept": "B", "ID": 5},
                ]
            )

            result = df1.join(
                df2, on=F.array_contains(df1.IDs, df2.ID), how="left"
            ).withColumn("FinalDept", F.coalesce(F.col("Dept"), F.lit("Unknown")))
            rows = result.collect()

            assert len(rows) == 2
            for row in rows:
                assert "FinalDept" in row
                assert row["FinalDept"] in ["A", "B", "Unknown"]
        finally:
            spark.stop()

    def test_array_contains_join_with_cast(self):
        """Test array_contains join with cast operations."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": [1, 2, 3]},
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 3},
                ]
            )

            result = df1.join(
                df2, on=F.array_contains(df1.IDs, df2.ID), how="left"
            ).withColumn("DeptStr", F.col("Dept").cast(StringType()))
            rows = result.collect()

            assert len(rows) == 1
            assert rows[0]["DeptStr"] == "A"
        finally:
            spark.stop()

    def test_array_contains_join_schema_verification(self):
        """Test that array_contains join produces correct schema."""
        spark = SparkSession.builder.appName("issue-331").getOrCreate()
        try:
            df1 = spark.createDataFrame(
                [
                    {"Name": "Alice", "IDs": [1, 2, 3]},
                ]
            )

            df2 = spark.createDataFrame(
                [
                    {"Dept": "A", "ID": 3},
                ]
            )

            result = df1.join(df2, on=F.array_contains(df1.IDs, df2.ID), how="left")

            schema = result.schema
            field_names = [field.name for field in schema.fields]

            # Should contain columns from both DataFrames
            assert "Name" in field_names
            assert "IDs" in field_names
            assert "Dept" in field_names
            assert "ID" in field_names
        finally:
            spark.stop()