snowpark-connect 0.24.0__py3-none-any.whl → 0.25.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of snowpark-connect might be problematic. Click here for more details.

Files changed (474) hide show
  1. snowflake/snowpark_connect/column_name_handler.py +116 -4
  2. snowflake/snowpark_connect/config.py +13 -0
  3. snowflake/snowpark_connect/constants.py +0 -29
  4. snowflake/snowpark_connect/dataframe_container.py +6 -0
  5. snowflake/snowpark_connect/execute_plan/map_execution_command.py +56 -1
  6. snowflake/snowpark_connect/expression/literal.py +13 -2
  7. snowflake/snowpark_connect/expression/map_cast.py +5 -8
  8. snowflake/snowpark_connect/expression/map_sql_expression.py +23 -1
  9. snowflake/snowpark_connect/expression/map_udf.py +26 -8
  10. snowflake/snowpark_connect/expression/map_unresolved_attribute.py +199 -15
  11. snowflake/snowpark_connect/expression/map_unresolved_extract_value.py +44 -16
  12. snowflake/snowpark_connect/expression/map_unresolved_function.py +825 -353
  13. snowflake/snowpark_connect/expression/map_unresolved_star.py +3 -2
  14. snowflake/snowpark_connect/hidden_column.py +39 -0
  15. snowflake/snowpark_connect/includes/jars/hadoop-client-api-trimmed-3.3.4.jar +0 -0
  16. snowflake/snowpark_connect/includes/jars/{hadoop-client-api-3.3.4.jar → spark-connect-client-jvm_2.12-3.5.6.jar} +0 -0
  17. snowflake/snowpark_connect/relation/map_column_ops.py +17 -4
  18. snowflake/snowpark_connect/relation/map_extension.py +52 -11
  19. snowflake/snowpark_connect/relation/map_join.py +258 -62
  20. snowflake/snowpark_connect/relation/map_sql.py +88 -11
  21. snowflake/snowpark_connect/relation/map_udtf.py +4 -2
  22. snowflake/snowpark_connect/relation/read/map_read.py +3 -3
  23. snowflake/snowpark_connect/relation/read/map_read_jdbc.py +1 -1
  24. snowflake/snowpark_connect/relation/read/map_read_json.py +8 -1
  25. snowflake/snowpark_connect/relation/read/map_read_table.py +1 -9
  26. snowflake/snowpark_connect/relation/read/reader_config.py +3 -1
  27. snowflake/snowpark_connect/relation/write/map_write.py +62 -53
  28. snowflake/snowpark_connect/resources_initializer.py +29 -1
  29. snowflake/snowpark_connect/server.py +18 -3
  30. snowflake/snowpark_connect/type_mapping.py +29 -25
  31. snowflake/snowpark_connect/typed_column.py +14 -0
  32. snowflake/snowpark_connect/utils/artifacts.py +23 -0
  33. snowflake/snowpark_connect/utils/context.py +6 -1
  34. snowflake/snowpark_connect/utils/scala_udf_utils.py +588 -0
  35. snowflake/snowpark_connect/utils/telemetry.py +6 -17
  36. snowflake/snowpark_connect/utils/udf_helper.py +2 -0
  37. snowflake/snowpark_connect/utils/udf_utils.py +38 -7
  38. snowflake/snowpark_connect/utils/udtf_utils.py +17 -3
  39. snowflake/snowpark_connect/version.py +1 -1
  40. {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/METADATA +1 -1
  41. snowpark_connect-0.25.0.dist-info/RECORD +477 -0
  42. snowflake/snowpark_connect/includes/jars/scala-compiler-2.12.18.jar +0 -0
  43. snowflake/snowpark_connect/includes/jars/spark-kubernetes_2.12-3.5.6.jar +0 -0
  44. snowflake/snowpark_connect/includes/jars/spark-mllib_2.12-3.5.6.jar +0 -0
  45. snowflake/snowpark_connect/includes/jars/spark-streaming_2.12-3.5.6.jar +0 -0
  46. snowflake/snowpark_connect/includes/python/pyspark/errors/tests/__init__.py +0 -16
  47. snowflake/snowpark_connect/includes/python/pyspark/errors/tests/test_errors.py +0 -60
  48. snowflake/snowpark_connect/includes/python/pyspark/ml/deepspeed/tests/test_deepspeed_distributor.py +0 -306
  49. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/__init__.py +0 -16
  50. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_classification.py +0 -53
  51. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_evaluation.py +0 -50
  52. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_feature.py +0 -43
  53. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_function.py +0 -114
  54. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_pipeline.py +0 -47
  55. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_summarizer.py +0 -43
  56. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_tuning.py +0 -46
  57. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_classification.py +0 -238
  58. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_evaluation.py +0 -194
  59. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_feature.py +0 -156
  60. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_pipeline.py +0 -184
  61. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_summarizer.py +0 -78
  62. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_tuning.py +0 -292
  63. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_parity_torch_data_loader.py +0 -50
  64. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_parity_torch_distributor.py +0 -152
  65. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_algorithms.py +0 -456
  66. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_base.py +0 -96
  67. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_dl_util.py +0 -186
  68. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_evaluation.py +0 -77
  69. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_feature.py +0 -401
  70. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_functions.py +0 -528
  71. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_image.py +0 -82
  72. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_linalg.py +0 -409
  73. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_model_cache.py +0 -55
  74. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_param.py +0 -441
  75. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_persistence.py +0 -546
  76. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_pipeline.py +0 -71
  77. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_stat.py +0 -52
  78. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_training_summary.py +0 -494
  79. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_util.py +0 -85
  80. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_wrapper.py +0 -138
  81. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/__init__.py +0 -16
  82. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_basic.py +0 -151
  83. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_nested.py +0 -97
  84. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_pipeline.py +0 -143
  85. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tuning.py +0 -551
  86. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_basic.py +0 -137
  87. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_nested.py +0 -96
  88. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_pipeline.py +0 -142
  89. snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/__init__.py +0 -16
  90. snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_data_loader.py +0 -137
  91. snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_distributor.py +0 -561
  92. snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_log_communication.py +0 -172
  93. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/__init__.py +0 -16
  94. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_algorithms.py +0 -353
  95. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_feature.py +0 -192
  96. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_linalg.py +0 -680
  97. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_stat.py +0 -206
  98. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_streaming_algorithms.py +0 -471
  99. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_util.py +0 -108
  100. snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/__init__.py +0 -16
  101. snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/accessors.py +0 -1281
  102. snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/functions.py +0 -203
  103. snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/utils.py +0 -202
  104. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/__init__.py +0 -16
  105. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/__init__.py +0 -16
  106. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_any_all.py +0 -177
  107. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_apply_func.py +0 -575
  108. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_binary_ops.py +0 -235
  109. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_combine.py +0 -653
  110. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_compute.py +0 -463
  111. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_corrwith.py +0 -86
  112. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_cov.py +0 -151
  113. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_cumulative.py +0 -139
  114. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_describe.py +0 -458
  115. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_eval.py +0 -86
  116. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_melt.py +0 -202
  117. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_missing_data.py +0 -520
  118. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_pivot.py +0 -361
  119. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/__init__.py +0 -16
  120. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/__init__.py +0 -16
  121. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_any_all.py +0 -40
  122. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_apply_func.py +0 -42
  123. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_binary_ops.py +0 -40
  124. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_combine.py +0 -37
  125. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_compute.py +0 -60
  126. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_corrwith.py +0 -40
  127. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_cov.py +0 -40
  128. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_cumulative.py +0 -90
  129. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_describe.py +0 -40
  130. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_eval.py +0 -40
  131. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_melt.py +0 -40
  132. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_missing_data.py +0 -42
  133. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_pivot.py +0 -37
  134. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/__init__.py +0 -16
  135. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_base.py +0 -36
  136. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_binary_ops.py +0 -42
  137. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_boolean_ops.py +0 -47
  138. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_categorical_ops.py +0 -55
  139. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_complex_ops.py +0 -40
  140. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_date_ops.py +0 -47
  141. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_datetime_ops.py +0 -47
  142. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_null_ops.py +0 -42
  143. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_arithmetic.py +0 -43
  144. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_ops.py +0 -47
  145. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_reverse.py +0 -43
  146. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_string_ops.py +0 -47
  147. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_timedelta_ops.py +0 -47
  148. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_udt_ops.py +0 -40
  149. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/testing_utils.py +0 -226
  150. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/__init__.py +0 -16
  151. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_align.py +0 -39
  152. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_basic_slow.py +0 -55
  153. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_cov_corrwith.py +0 -39
  154. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_dot_frame.py +0 -39
  155. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_dot_series.py +0 -39
  156. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_index.py +0 -39
  157. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_series.py +0 -39
  158. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_setitem_frame.py +0 -43
  159. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_setitem_series.py +0 -43
  160. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/__init__.py +0 -16
  161. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_attrs.py +0 -40
  162. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_constructor.py +0 -39
  163. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_conversion.py +0 -42
  164. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_reindexing.py +0 -42
  165. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_reshaping.py +0 -37
  166. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_spark.py +0 -40
  167. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_take.py +0 -42
  168. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_time_series.py +0 -48
  169. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_truncate.py +0 -40
  170. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/__init__.py +0 -16
  171. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_aggregate.py +0 -40
  172. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_apply_func.py +0 -41
  173. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_cumulative.py +0 -67
  174. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_describe.py +0 -40
  175. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_groupby.py +0 -55
  176. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_head_tail.py +0 -40
  177. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_index.py +0 -38
  178. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_missing_data.py +0 -55
  179. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_split_apply.py +0 -39
  180. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_stat.py +0 -38
  181. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/__init__.py +0 -16
  182. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_align.py +0 -40
  183. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_base.py +0 -50
  184. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_category.py +0 -73
  185. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_datetime.py +0 -39
  186. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_indexing.py +0 -40
  187. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_reindex.py +0 -40
  188. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_rename.py +0 -40
  189. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_reset_index.py +0 -48
  190. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_timedelta.py +0 -39
  191. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/io/__init__.py +0 -16
  192. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/io/test_parity_io.py +0 -40
  193. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/__init__.py +0 -16
  194. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot.py +0 -45
  195. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot_matplotlib.py +0 -45
  196. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot_plotly.py +0 -49
  197. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot.py +0 -37
  198. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot_matplotlib.py +0 -53
  199. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot_plotly.py +0 -45
  200. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/__init__.py +0 -16
  201. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_all_any.py +0 -38
  202. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_arg_ops.py +0 -37
  203. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_as_of.py +0 -37
  204. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_as_type.py +0 -38
  205. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_compute.py +0 -37
  206. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_conversion.py +0 -40
  207. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_cumulative.py +0 -40
  208. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_index.py +0 -38
  209. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_missing_data.py +0 -40
  210. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_series.py +0 -37
  211. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_sort.py +0 -38
  212. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_stat.py +0 -38
  213. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_categorical.py +0 -66
  214. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_config.py +0 -37
  215. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_csv.py +0 -37
  216. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_dataframe_conversion.py +0 -42
  217. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_dataframe_spark_io.py +0 -39
  218. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_default_index.py +0 -49
  219. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ewm.py +0 -37
  220. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_expanding.py +0 -39
  221. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_extension.py +0 -49
  222. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_frame_spark.py +0 -53
  223. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_generic_functions.py +0 -43
  224. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_indexing.py +0 -49
  225. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_indexops_spark.py +0 -39
  226. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_internal.py +0 -41
  227. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_namespace.py +0 -39
  228. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_numpy_compat.py +0 -60
  229. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames.py +0 -48
  230. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby.py +0 -39
  231. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby_expanding.py +0 -44
  232. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby_rolling.py +0 -84
  233. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_repr.py +0 -37
  234. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_resample.py +0 -45
  235. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_reshape.py +0 -39
  236. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_rolling.py +0 -39
  237. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_scalars.py +0 -37
  238. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_conversion.py +0 -39
  239. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_datetime.py +0 -39
  240. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_string.py +0 -39
  241. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_spark_functions.py +0 -39
  242. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_sql.py +0 -43
  243. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_stats.py +0 -37
  244. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_typedef.py +0 -36
  245. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_utils.py +0 -37
  246. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_window.py +0 -39
  247. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/__init__.py +0 -16
  248. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_base.py +0 -107
  249. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_binary_ops.py +0 -224
  250. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_boolean_ops.py +0 -825
  251. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_categorical_ops.py +0 -562
  252. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_complex_ops.py +0 -368
  253. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_date_ops.py +0 -257
  254. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_datetime_ops.py +0 -260
  255. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_null_ops.py +0 -178
  256. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_arithmetic.py +0 -184
  257. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_ops.py +0 -497
  258. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_reverse.py +0 -140
  259. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_string_ops.py +0 -354
  260. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_timedelta_ops.py +0 -219
  261. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_udt_ops.py +0 -192
  262. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/testing_utils.py +0 -228
  263. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/__init__.py +0 -16
  264. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_align.py +0 -118
  265. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_basic_slow.py +0 -198
  266. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_cov_corrwith.py +0 -181
  267. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_dot_frame.py +0 -103
  268. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_dot_series.py +0 -141
  269. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_index.py +0 -109
  270. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_series.py +0 -136
  271. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_setitem_frame.py +0 -125
  272. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_setitem_series.py +0 -217
  273. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/__init__.py +0 -16
  274. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_attrs.py +0 -384
  275. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_constructor.py +0 -598
  276. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_conversion.py +0 -73
  277. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_reindexing.py +0 -869
  278. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_reshaping.py +0 -487
  279. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_spark.py +0 -309
  280. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_take.py +0 -156
  281. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_time_series.py +0 -149
  282. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_truncate.py +0 -163
  283. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/__init__.py +0 -16
  284. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_aggregate.py +0 -311
  285. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_apply_func.py +0 -524
  286. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_cumulative.py +0 -419
  287. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_describe.py +0 -144
  288. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_groupby.py +0 -979
  289. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_head_tail.py +0 -234
  290. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_index.py +0 -206
  291. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_missing_data.py +0 -421
  292. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_split_apply.py +0 -187
  293. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_stat.py +0 -397
  294. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/__init__.py +0 -16
  295. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_align.py +0 -100
  296. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_base.py +0 -2743
  297. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_category.py +0 -484
  298. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_datetime.py +0 -276
  299. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_indexing.py +0 -432
  300. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_reindex.py +0 -310
  301. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_rename.py +0 -257
  302. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_reset_index.py +0 -160
  303. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_timedelta.py +0 -128
  304. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/io/__init__.py +0 -16
  305. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/io/test_io.py +0 -137
  306. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/__init__.py +0 -16
  307. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot.py +0 -170
  308. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot_matplotlib.py +0 -547
  309. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot_plotly.py +0 -285
  310. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot.py +0 -106
  311. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot_matplotlib.py +0 -409
  312. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot_plotly.py +0 -247
  313. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/__init__.py +0 -16
  314. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_all_any.py +0 -105
  315. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_arg_ops.py +0 -197
  316. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_as_of.py +0 -137
  317. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_as_type.py +0 -227
  318. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_compute.py +0 -634
  319. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_conversion.py +0 -88
  320. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_cumulative.py +0 -139
  321. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_index.py +0 -475
  322. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_missing_data.py +0 -265
  323. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_series.py +0 -818
  324. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_sort.py +0 -162
  325. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_stat.py +0 -780
  326. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_categorical.py +0 -741
  327. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_config.py +0 -160
  328. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_csv.py +0 -453
  329. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_dataframe_conversion.py +0 -281
  330. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_dataframe_spark_io.py +0 -487
  331. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_default_index.py +0 -109
  332. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ewm.py +0 -434
  333. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_expanding.py +0 -253
  334. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_extension.py +0 -152
  335. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_frame_spark.py +0 -162
  336. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_generic_functions.py +0 -234
  337. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_indexing.py +0 -1339
  338. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_indexops_spark.py +0 -82
  339. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_internal.py +0 -124
  340. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_namespace.py +0 -638
  341. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_numpy_compat.py +0 -200
  342. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames.py +0 -1355
  343. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby.py +0 -655
  344. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby_expanding.py +0 -113
  345. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby_rolling.py +0 -118
  346. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_repr.py +0 -192
  347. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_resample.py +0 -346
  348. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_reshape.py +0 -495
  349. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_rolling.py +0 -263
  350. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_scalars.py +0 -59
  351. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_conversion.py +0 -85
  352. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_datetime.py +0 -364
  353. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_string.py +0 -362
  354. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_spark_functions.py +0 -46
  355. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_sql.py +0 -123
  356. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_stats.py +0 -581
  357. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_typedef.py +0 -447
  358. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_utils.py +0 -301
  359. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_window.py +0 -465
  360. snowflake/snowpark_connect/includes/python/pyspark/resource/tests/__init__.py +0 -16
  361. snowflake/snowpark_connect/includes/python/pyspark/resource/tests/test_resources.py +0 -83
  362. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/__init__.py +0 -16
  363. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/__init__.py +0 -16
  364. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/__init__.py +0 -16
  365. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/test_artifact.py +0 -420
  366. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/test_client.py +0 -358
  367. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/__init__.py +0 -16
  368. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_foreach.py +0 -36
  369. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_foreach_batch.py +0 -44
  370. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_listener.py +0 -116
  371. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_streaming.py +0 -35
  372. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_basic.py +0 -3612
  373. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_column.py +0 -1042
  374. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_function.py +0 -2381
  375. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_plan.py +0 -1060
  376. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow.py +0 -163
  377. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow_map.py +0 -38
  378. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow_python_udf.py +0 -48
  379. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_catalog.py +0 -36
  380. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_column.py +0 -55
  381. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_conf.py +0 -36
  382. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_dataframe.py +0 -96
  383. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_datasources.py +0 -44
  384. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_errors.py +0 -36
  385. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_functions.py +0 -59
  386. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_group.py +0 -36
  387. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_cogrouped_map.py +0 -59
  388. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_grouped_map.py +0 -74
  389. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_grouped_map_with_state.py +0 -62
  390. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_map.py +0 -58
  391. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf.py +0 -70
  392. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_grouped_agg.py +0 -50
  393. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_scalar.py +0 -68
  394. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_window.py +0 -40
  395. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_readwriter.py +0 -46
  396. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_serde.py +0 -44
  397. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_types.py +0 -100
  398. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_udf.py +0 -100
  399. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_udtf.py +0 -163
  400. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_session.py +0 -181
  401. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_utils.py +0 -42
  402. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/__init__.py +0 -16
  403. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_cogrouped_map.py +0 -623
  404. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_grouped_map.py +0 -869
  405. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_grouped_map_with_state.py +0 -342
  406. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_map.py +0 -436
  407. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf.py +0 -363
  408. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_grouped_agg.py +0 -592
  409. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_scalar.py +0 -1503
  410. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_typehints.py +0 -392
  411. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_typehints_with_future_annotations.py +0 -375
  412. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_window.py +0 -411
  413. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/__init__.py +0 -16
  414. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming.py +0 -401
  415. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_foreach.py +0 -295
  416. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_foreach_batch.py +0 -106
  417. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_listener.py +0 -558
  418. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow.py +0 -1346
  419. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow_map.py +0 -182
  420. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow_python_udf.py +0 -202
  421. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_catalog.py +0 -503
  422. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_column.py +0 -225
  423. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_conf.py +0 -83
  424. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_context.py +0 -201
  425. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_dataframe.py +0 -1931
  426. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_datasources.py +0 -256
  427. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_errors.py +0 -69
  428. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_functions.py +0 -1349
  429. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_group.py +0 -53
  430. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_pandas_sqlmetrics.py +0 -68
  431. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_readwriter.py +0 -283
  432. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_serde.py +0 -155
  433. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_session.py +0 -412
  434. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_types.py +0 -1581
  435. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udf.py +0 -961
  436. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udf_profiler.py +0 -165
  437. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udtf.py +0 -1456
  438. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_utils.py +0 -1686
  439. snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/__init__.py +0 -16
  440. snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_context.py +0 -184
  441. snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_dstream.py +0 -706
  442. snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_kinesis.py +0 -118
  443. snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_listener.py +0 -160
  444. snowflake/snowpark_connect/includes/python/pyspark/tests/__init__.py +0 -16
  445. snowflake/snowpark_connect/includes/python/pyspark/tests/test_appsubmit.py +0 -306
  446. snowflake/snowpark_connect/includes/python/pyspark/tests/test_broadcast.py +0 -196
  447. snowflake/snowpark_connect/includes/python/pyspark/tests/test_conf.py +0 -44
  448. snowflake/snowpark_connect/includes/python/pyspark/tests/test_context.py +0 -346
  449. snowflake/snowpark_connect/includes/python/pyspark/tests/test_daemon.py +0 -89
  450. snowflake/snowpark_connect/includes/python/pyspark/tests/test_install_spark.py +0 -124
  451. snowflake/snowpark_connect/includes/python/pyspark/tests/test_join.py +0 -69
  452. snowflake/snowpark_connect/includes/python/pyspark/tests/test_memory_profiler.py +0 -167
  453. snowflake/snowpark_connect/includes/python/pyspark/tests/test_pin_thread.py +0 -194
  454. snowflake/snowpark_connect/includes/python/pyspark/tests/test_profiler.py +0 -168
  455. snowflake/snowpark_connect/includes/python/pyspark/tests/test_rdd.py +0 -939
  456. snowflake/snowpark_connect/includes/python/pyspark/tests/test_rddbarrier.py +0 -52
  457. snowflake/snowpark_connect/includes/python/pyspark/tests/test_rddsampler.py +0 -66
  458. snowflake/snowpark_connect/includes/python/pyspark/tests/test_readwrite.py +0 -368
  459. snowflake/snowpark_connect/includes/python/pyspark/tests/test_serializers.py +0 -257
  460. snowflake/snowpark_connect/includes/python/pyspark/tests/test_shuffle.py +0 -267
  461. snowflake/snowpark_connect/includes/python/pyspark/tests/test_stage_sched.py +0 -153
  462. snowflake/snowpark_connect/includes/python/pyspark/tests/test_statcounter.py +0 -130
  463. snowflake/snowpark_connect/includes/python/pyspark/tests/test_taskcontext.py +0 -350
  464. snowflake/snowpark_connect/includes/python/pyspark/tests/test_util.py +0 -97
  465. snowflake/snowpark_connect/includes/python/pyspark/tests/test_worker.py +0 -271
  466. snowpark_connect-0.24.0.dist-info/RECORD +0 -898
  467. {snowpark_connect-0.24.0.data → snowpark_connect-0.25.0.data}/scripts/snowpark-connect +0 -0
  468. {snowpark_connect-0.24.0.data → snowpark_connect-0.25.0.data}/scripts/snowpark-session +0 -0
  469. {snowpark_connect-0.24.0.data → snowpark_connect-0.25.0.data}/scripts/snowpark-submit +0 -0
  470. {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/WHEEL +0 -0
  471. {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/licenses/LICENSE-binary +0 -0
  472. {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/licenses/LICENSE.txt +0 -0
  473. {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/licenses/NOTICE-binary +0 -0
  474. {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/top_level.txt +0 -0
@@ -1,655 +0,0 @@
1
- #
2
- # Licensed to the Apache Software Foundation (ASF) under one or more
3
- # contributor license agreements. See the NOTICE file distributed with
4
- # this work for additional information regarding copyright ownership.
5
- # The ASF licenses this file to You under the Apache License, Version 2.0
6
- # (the "License"); you may not use this file except in compliance with
7
- # the License. You may obtain a copy of the License at
8
- #
9
- # http://www.apache.org/licenses/LICENSE-2.0
10
- #
11
- # Unless required by applicable law or agreed to in writing, software
12
- # distributed under the License is distributed on an "AS IS" BASIS,
13
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
- # See the License for the specific language governing permissions and
15
- # limitations under the License.
16
- #
17
-
18
- import unittest
19
- from distutils.version import LooseVersion
20
-
21
- import pandas as pd
22
-
23
- from pyspark import pandas as ps
24
- from pyspark.pandas.config import set_option, reset_option
25
- from pyspark.testing.pandasutils import PandasOnSparkTestCase
26
- from pyspark.testing.sqlutils import SQLTestUtils
27
-
28
-
29
- class OpsOnDiffFramesGroupByTestsMixin:
30
- @classmethod
31
- def setUpClass(cls):
32
- super().setUpClass()
33
- set_option("compute.ops_on_diff_frames", True)
34
-
35
- @classmethod
36
- def tearDownClass(cls):
37
- reset_option("compute.ops_on_diff_frames")
38
- super().tearDownClass()
39
-
40
- @unittest.skipIf(
41
- LooseVersion(pd.__version__) >= LooseVersion("2.0.0"),
42
- "TODO(SPARK-43460): Enable OpsOnDiffFramesGroupByTests.test_groupby_different_lengths "
43
- "for pandas 2.0.0.",
44
- )
45
- def test_groupby_different_lengths(self):
46
- pdfs1 = [
47
- pd.DataFrame({"c": [4, 2, 7, 3, None, 1, 1, 1, 2], "d": list("abcdefght")}),
48
- pd.DataFrame({"c": [4, 2, 7, None, 1, 1, 2], "d": list("abcdefg")}),
49
- pd.DataFrame({"c": [4, 2, 7, 3, None, 1, 1, 1, 2, 2], "d": list("abcdefghti")}),
50
- ]
51
- pdfs2 = [
52
- pd.DataFrame({"a": [1, 2, 6, 4, 4, 6, 4, 3, 7], "b": [4, 2, 7, 3, 3, 1, 1, 1, 2]}),
53
- pd.DataFrame({"a": [1, 2, 6, 4, 4, 6, 4, 7], "b": [4, 2, 7, 3, 3, 1, 1, 2]}),
54
- pd.DataFrame({"a": [1, 2, 6, 4, 4, 6, 4, 3, 7], "b": [4, 2, 7, 3, 3, 1, 1, 1, 2]}),
55
- ]
56
-
57
- for pdf1, pdf2 in zip(pdfs1, pdfs2):
58
- psdf1 = ps.from_pandas(pdf1)
59
- psdf2 = ps.from_pandas(pdf2)
60
-
61
- for as_index in [True, False]:
62
- if as_index:
63
-
64
- def sort(df):
65
- return df.sort_index()
66
-
67
- else:
68
-
69
- def sort(df):
70
- return df.sort_values("c").reset_index(drop=True)
71
-
72
- self.assert_eq(
73
- sort(psdf1.groupby(psdf2.a, as_index=as_index).sum()),
74
- sort(pdf1.groupby(pdf2.a, as_index=as_index).sum()),
75
- almost=as_index,
76
- )
77
-
78
- self.assert_eq(
79
- sort(psdf1.groupby(psdf2.a, as_index=as_index).c.sum()),
80
- sort(pdf1.groupby(pdf2.a, as_index=as_index).c.sum()),
81
- almost=as_index,
82
- )
83
- self.assert_eq(
84
- sort(psdf1.groupby(psdf2.a, as_index=as_index)["c"].sum()),
85
- sort(pdf1.groupby(pdf2.a, as_index=as_index)["c"].sum()),
86
- almost=as_index,
87
- )
88
-
89
- @unittest.skipIf(
90
- LooseVersion(pd.__version__) >= LooseVersion("2.0.0"),
91
- "TODO(SPARK-43459): Enable OpsOnDiffFramesGroupByTests.test_groupby_multiindex_columns "
92
- "for pandas 2.0.0.",
93
- )
94
- def test_groupby_multiindex_columns(self):
95
- pdf1 = pd.DataFrame(
96
- {("y", "c"): [4, 2, 7, 3, None, 1, 1, 1, 2], ("z", "d"): list("abcdefght")}
97
- )
98
- pdf2 = pd.DataFrame(
99
- {("x", "a"): [1, 2, 6, 4, 4, 6, 4, 3, 7], ("x", "b"): [4, 2, 7, 3, 3, 1, 1, 1, 2]}
100
- )
101
- psdf1 = ps.from_pandas(pdf1)
102
- psdf2 = ps.from_pandas(pdf2)
103
-
104
- self.assert_eq(
105
- psdf1.groupby(psdf2[("x", "a")]).sum().sort_index(),
106
- pdf1.groupby(pdf2[("x", "a")]).sum().sort_index(),
107
- )
108
-
109
- self.assert_eq(
110
- psdf1.groupby(psdf2[("x", "a")], as_index=False)
111
- .sum()
112
- .sort_values(("y", "c"))
113
- .reset_index(drop=True),
114
- pdf1.groupby(pdf2[("x", "a")], as_index=False)
115
- .sum()
116
- .sort_values(("y", "c"))
117
- .reset_index(drop=True),
118
- )
119
- self.assert_eq(
120
- psdf1.groupby(psdf2[("x", "a")])[[("y", "c")]].sum().sort_index(),
121
- pdf1.groupby(pdf2[("x", "a")])[[("y", "c")]].sum().sort_index(),
122
- )
123
-
124
- def test_split_apply_combine_on_series(self):
125
- pdf1 = pd.DataFrame({"C": [0.362, 0.227, 1.267, -0.562], "B": [1, 2, 3, 4]})
126
- pdf2 = pd.DataFrame({"A": [1, 1, 2, 2]})
127
- psdf1 = ps.from_pandas(pdf1)
128
- psdf2 = ps.from_pandas(pdf2)
129
-
130
- for as_index in [True, False]:
131
- if as_index:
132
-
133
- def sort(df):
134
- return df.sort_index()
135
-
136
- else:
137
-
138
- def sort(df):
139
- return df.sort_values(list(df.columns)).reset_index(drop=True)
140
-
141
- with self.subTest(as_index=as_index):
142
- self.assert_eq(
143
- sort(psdf1.groupby(psdf2.A, as_index=as_index).sum()),
144
- sort(pdf1.groupby(pdf2.A, as_index=as_index).sum()),
145
- )
146
- self.assert_eq(
147
- sort(psdf1.groupby(psdf2.A, as_index=as_index).B.sum()),
148
- sort(pdf1.groupby(pdf2.A, as_index=as_index).B.sum()),
149
- )
150
- self.assert_eq(
151
- sort(psdf1.groupby([psdf1.C, psdf2.A], as_index=as_index).sum()),
152
- sort(pdf1.groupby([pdf1.C, pdf2.A], as_index=as_index).sum()),
153
- )
154
- self.assert_eq(
155
- sort(psdf1.groupby([psdf1.C + 1, psdf2.A], as_index=as_index).sum()),
156
- sort(pdf1.groupby([pdf1.C + 1, pdf2.A], as_index=as_index).sum()),
157
- )
158
-
159
- self.assert_eq(
160
- psdf1.B.groupby(psdf2.A).sum().sort_index(),
161
- pdf1.B.groupby(pdf2.A).sum().sort_index(),
162
- )
163
- self.assert_eq(
164
- (psdf1.B + 1).groupby(psdf2.A).sum().sort_index(),
165
- (pdf1.B + 1).groupby(pdf2.A).sum().sort_index(),
166
- )
167
-
168
- self.assert_eq(
169
- psdf1.B.groupby(psdf2.A.rename()).sum().sort_index(),
170
- pdf1.B.groupby(pdf2.A.rename()).sum().sort_index(),
171
- )
172
- self.assert_eq(
173
- psdf1.B.rename().groupby(psdf2.A).sum().sort_index(),
174
- pdf1.B.rename().groupby(pdf2.A).sum().sort_index(),
175
- )
176
- self.assert_eq(
177
- psdf1.B.rename().groupby(psdf2.A.rename()).sum().sort_index(),
178
- pdf1.B.rename().groupby(pdf2.A.rename()).sum().sort_index(),
179
- )
180
-
181
- def test_aggregate(self):
182
- pdf1 = pd.DataFrame({"C": [0.362, 0.227, 1.267, -0.562], "B": [1, 2, 3, 4]})
183
- pdf2 = pd.DataFrame({"A": [1, 1, 2, 2]})
184
- psdf1 = ps.from_pandas(pdf1)
185
- psdf2 = ps.from_pandas(pdf2)
186
-
187
- for as_index in [True, False]:
188
- if as_index:
189
-
190
- def sort(df):
191
- return df.sort_index()
192
-
193
- else:
194
-
195
- def sort(df):
196
- return df.sort_values(list(df.columns)).reset_index(drop=True)
197
-
198
- with self.subTest(as_index=as_index):
199
- self.assert_eq(
200
- sort(psdf1.groupby(psdf2.A, as_index=as_index).agg("sum")),
201
- sort(pdf1.groupby(pdf2.A, as_index=as_index).agg("sum")),
202
- )
203
- self.assert_eq(
204
- sort(psdf1.groupby(psdf2.A, as_index=as_index).agg({"B": "min", "C": "sum"})),
205
- sort(pdf1.groupby(pdf2.A, as_index=as_index).agg({"B": "min", "C": "sum"})),
206
- )
207
- self.assert_eq(
208
- sort(
209
- psdf1.groupby(psdf2.A, as_index=as_index).agg(
210
- {"B": ["min", "max"], "C": "sum"}
211
- )
212
- ),
213
- sort(
214
- pdf1.groupby(pdf2.A, as_index=as_index).agg(
215
- {"B": ["min", "max"], "C": "sum"}
216
- )
217
- ),
218
- )
219
- self.assert_eq(
220
- sort(psdf1.groupby([psdf1.C, psdf2.A], as_index=as_index).agg("sum")),
221
- sort(pdf1.groupby([pdf1.C, pdf2.A], as_index=as_index).agg("sum")),
222
- )
223
- self.assert_eq(
224
- sort(psdf1.groupby([psdf1.C + 1, psdf2.A], as_index=as_index).agg("sum")),
225
- sort(pdf1.groupby([pdf1.C + 1, pdf2.A], as_index=as_index).agg("sum")),
226
- )
227
-
228
- # multi-index columns
229
- columns = pd.MultiIndex.from_tuples([("Y", "C"), ("X", "B")])
230
- pdf1.columns = columns
231
- psdf1.columns = columns
232
-
233
- columns = pd.MultiIndex.from_tuples([("X", "A")])
234
- pdf2.columns = columns
235
- psdf2.columns = columns
236
-
237
- for as_index in [True, False]:
238
- stats_psdf = psdf1.groupby(psdf2[("X", "A")], as_index=as_index).agg(
239
- {("X", "B"): "min", ("Y", "C"): "sum"}
240
- )
241
- stats_pdf = pdf1.groupby(pdf2[("X", "A")], as_index=as_index).agg(
242
- {("X", "B"): "min", ("Y", "C"): "sum"}
243
- )
244
- self.assert_eq(
245
- stats_psdf.sort_values(by=[("X", "B"), ("Y", "C")]).reset_index(drop=True),
246
- stats_pdf.sort_values(by=[("X", "B"), ("Y", "C")]).reset_index(drop=True),
247
- )
248
-
249
- stats_psdf = psdf1.groupby(psdf2[("X", "A")]).agg(
250
- {("X", "B"): ["min", "max"], ("Y", "C"): "sum"}
251
- )
252
- stats_pdf = pdf1.groupby(pdf2[("X", "A")]).agg(
253
- {("X", "B"): ["min", "max"], ("Y", "C"): "sum"}
254
- )
255
- self.assert_eq(
256
- stats_psdf.sort_values(
257
- by=[("X", "B", "min"), ("X", "B", "max"), ("Y", "C", "sum")]
258
- ).reset_index(drop=True),
259
- stats_pdf.sort_values(
260
- by=[("X", "B", "min"), ("X", "B", "max"), ("Y", "C", "sum")]
261
- ).reset_index(drop=True),
262
- )
263
-
264
- def test_duplicated_labels(self):
265
- pdf1 = pd.DataFrame({"A": [3, 2, 1]})
266
- pdf2 = pd.DataFrame({"A": [1, 2, 3]})
267
- psdf1 = ps.from_pandas(pdf1)
268
- psdf2 = ps.from_pandas(pdf2)
269
-
270
- self.assert_eq(
271
- psdf1.groupby(psdf2.A).sum().sort_index(), pdf1.groupby(pdf2.A).sum().sort_index()
272
- )
273
- self.assert_eq(
274
- psdf1.groupby(psdf2.A, as_index=False).sum().sort_values("A").reset_index(drop=True),
275
- pdf1.groupby(pdf2.A, as_index=False).sum().sort_values("A").reset_index(drop=True),
276
- )
277
-
278
- def test_apply(self):
279
- pdf = pd.DataFrame(
280
- {"a": [1, 2, 3, 4, 5, 6], "b": [1, 1, 2, 3, 5, 8], "c": [1, 4, 9, 16, 25, 36]},
281
- columns=["a", "b", "c"],
282
- )
283
- pkey = pd.Series([1, 1, 2, 3, 5, 8])
284
- psdf = ps.from_pandas(pdf)
285
- kkey = ps.from_pandas(pkey)
286
-
287
- self.assert_eq(
288
- psdf.groupby(kkey).apply(lambda x: x + x.min()).sort_index(),
289
- pdf.groupby(pkey).apply(lambda x: x + x.min()).sort_index(),
290
- )
291
- self.assert_eq(
292
- psdf.groupby(kkey)["a"].apply(lambda x: x + x.min()).sort_index(),
293
- pdf.groupby(pkey)["a"].apply(lambda x: x + x.min()).sort_index(),
294
- )
295
- self.assert_eq(
296
- psdf.groupby(kkey)[["a"]].apply(lambda x: x + x.min()).sort_index(),
297
- pdf.groupby(pkey)[["a"]].apply(lambda x: x + x.min()).sort_index(),
298
- )
299
- self.assert_eq(
300
- psdf.groupby(["a", kkey]).apply(lambda x: x + x.min()).sort_index(),
301
- pdf.groupby(["a", pkey]).apply(lambda x: x + x.min()).sort_index(),
302
- )
303
-
304
- def test_transform(self):
305
- pdf = pd.DataFrame(
306
- {"a": [1, 2, 3, 4, 5, 6], "b": [1, 1, 2, 3, 5, 8], "c": [1, 4, 9, 16, 25, 36]},
307
- columns=["a", "b", "c"],
308
- )
309
- pkey = pd.Series([1, 1, 2, 3, 5, 8])
310
- psdf = ps.from_pandas(pdf)
311
- kkey = ps.from_pandas(pkey)
312
-
313
- self.assert_eq(
314
- psdf.groupby(kkey).transform(lambda x: x + x.min()).sort_index(),
315
- pdf.groupby(pkey).transform(lambda x: x + x.min()).sort_index(),
316
- )
317
- self.assert_eq(
318
- psdf.groupby(kkey)["a"].transform(lambda x: x + x.min()).sort_index(),
319
- pdf.groupby(pkey)["a"].transform(lambda x: x + x.min()).sort_index(),
320
- )
321
- self.assert_eq(
322
- psdf.groupby(kkey)[["a"]].transform(lambda x: x + x.min()).sort_index(),
323
- pdf.groupby(pkey)[["a"]].transform(lambda x: x + x.min()).sort_index(),
324
- )
325
- self.assert_eq(
326
- psdf.groupby(["a", kkey]).transform(lambda x: x + x.min()).sort_index(),
327
- pdf.groupby(["a", pkey]).transform(lambda x: x + x.min()).sort_index(),
328
- )
329
-
330
- def test_filter(self):
331
- pdf = pd.DataFrame(
332
- {"a": [1, 2, 3, 4, 5, 6], "b": [1, 1, 2, 3, 5, 8], "c": [1, 4, 9, 16, 25, 36]},
333
- columns=["a", "b", "c"],
334
- )
335
- pkey = pd.Series([1, 1, 2, 3, 5, 8])
336
- psdf = ps.from_pandas(pdf)
337
- kkey = ps.from_pandas(pkey)
338
-
339
- self.assert_eq(
340
- psdf.groupby(kkey).filter(lambda x: any(x.a == 2)).sort_index(),
341
- pdf.groupby(pkey).filter(lambda x: any(x.a == 2)).sort_index(),
342
- )
343
- self.assert_eq(
344
- psdf.groupby(kkey)["a"].filter(lambda x: any(x == 2)).sort_index(),
345
- pdf.groupby(pkey)["a"].filter(lambda x: any(x == 2)).sort_index(),
346
- )
347
- self.assert_eq(
348
- psdf.groupby(kkey)[["a"]].filter(lambda x: any(x.a == 2)).sort_index(),
349
- pdf.groupby(pkey)[["a"]].filter(lambda x: any(x.a == 2)).sort_index(),
350
- )
351
- self.assert_eq(
352
- psdf.groupby(["a", kkey]).filter(lambda x: any(x.a == 2)).sort_index(),
353
- pdf.groupby(["a", pkey]).filter(lambda x: any(x.a == 2)).sort_index(),
354
- )
355
-
356
- def test_head(self):
357
- pdf = pd.DataFrame(
358
- {
359
- "a": [1, 1, 1, 1, 2, 2, 2, 3, 3, 3] * 3,
360
- "b": [2, 3, 1, 4, 6, 9, 8, 10, 7, 5] * 3,
361
- "c": [3, 5, 2, 5, 1, 2, 6, 4, 3, 6] * 3,
362
- },
363
- )
364
- pkey = pd.Series([1, 1, 1, 1, 2, 2, 2, 3, 3, 3] * 3)
365
- psdf = ps.from_pandas(pdf)
366
- kkey = ps.from_pandas(pkey)
367
-
368
- self.assert_eq(
369
- pdf.groupby(pkey).head(2).sort_index(), psdf.groupby(kkey).head(2).sort_index()
370
- )
371
- self.assert_eq(
372
- pdf.groupby("a")["b"].head(2).sort_index(), psdf.groupby("a")["b"].head(2).sort_index()
373
- )
374
- self.assert_eq(
375
- pdf.groupby("a")[["b"]].head(2).sort_index(),
376
- psdf.groupby("a")[["b"]].head(2).sort_index(),
377
- )
378
- self.assert_eq(
379
- pdf.groupby([pkey, "b"]).head(2).sort_index(),
380
- psdf.groupby([kkey, "b"]).head(2).sort_index(),
381
- )
382
-
383
- def test_cumcount(self):
384
- pdf = pd.DataFrame(
385
- {
386
- "a": [1, 2, 3, 4, 5, 6] * 3,
387
- "b": [1, 1, 2, 3, 5, 8] * 3,
388
- "c": [1, 4, 9, 16, 25, 36] * 3,
389
- },
390
- )
391
- pkey = pd.Series([1, 1, 2, 3, 5, 8] * 3)
392
- psdf = ps.from_pandas(pdf)
393
- kkey = ps.from_pandas(pkey)
394
-
395
- for ascending in [True, False]:
396
- self.assert_eq(
397
- psdf.groupby(kkey).cumcount(ascending=ascending).sort_index(),
398
- pdf.groupby(pkey).cumcount(ascending=ascending).sort_index(),
399
- )
400
- self.assert_eq(
401
- psdf.groupby(kkey)["a"].cumcount(ascending=ascending).sort_index(),
402
- pdf.groupby(pkey)["a"].cumcount(ascending=ascending).sort_index(),
403
- )
404
- self.assert_eq(
405
- psdf.groupby(kkey)[["a"]].cumcount(ascending=ascending).sort_index(),
406
- pdf.groupby(pkey)[["a"]].cumcount(ascending=ascending).sort_index(),
407
- )
408
-
409
- def test_cummin(self):
410
- pdf = pd.DataFrame(
411
- {
412
- "a": [1, 2, 3, 4, 5, 6] * 3,
413
- "b": [1, 1, 2, 3, 5, 8] * 3,
414
- "c": [1, 4, 9, 16, 25, 36] * 3,
415
- },
416
- )
417
- pkey = pd.Series([1, 1, 2, 3, 5, 8] * 3)
418
- psdf = ps.from_pandas(pdf)
419
- kkey = ps.from_pandas(pkey)
420
-
421
- self.assert_eq(
422
- psdf.groupby(kkey).cummin().sort_index(), pdf.groupby(pkey).cummin().sort_index()
423
- )
424
- self.assert_eq(
425
- psdf.groupby(kkey)["a"].cummin().sort_index(),
426
- pdf.groupby(pkey)["a"].cummin().sort_index(),
427
- )
428
- self.assert_eq(
429
- psdf.groupby(kkey)[["a"]].cummin().sort_index(),
430
- pdf.groupby(pkey)[["a"]].cummin().sort_index(),
431
- )
432
-
433
- def test_cummax(self):
434
- pdf = pd.DataFrame(
435
- {
436
- "a": [1, 2, 3, 4, 5, 6] * 3,
437
- "b": [1, 1, 2, 3, 5, 8] * 3,
438
- "c": [1, 4, 9, 16, 25, 36] * 3,
439
- },
440
- )
441
- pkey = pd.Series([1, 1, 2, 3, 5, 8] * 3)
442
- psdf = ps.from_pandas(pdf)
443
- kkey = ps.from_pandas(pkey)
444
-
445
- self.assert_eq(
446
- psdf.groupby(kkey).cummax().sort_index(), pdf.groupby(pkey).cummax().sort_index()
447
- )
448
- self.assert_eq(
449
- psdf.groupby(kkey)["a"].cummax().sort_index(),
450
- pdf.groupby(pkey)["a"].cummax().sort_index(),
451
- )
452
- self.assert_eq(
453
- psdf.groupby(kkey)[["a"]].cummax().sort_index(),
454
- pdf.groupby(pkey)[["a"]].cummax().sort_index(),
455
- )
456
-
457
- def test_cumsum(self):
458
- pdf = pd.DataFrame(
459
- {
460
- "a": [1, 2, 3, 4, 5, 6] * 3,
461
- "b": [1, 1, 2, 3, 5, 8] * 3,
462
- "c": [1, 4, 9, 16, 25, 36] * 3,
463
- },
464
- )
465
- pkey = pd.Series([1, 1, 2, 3, 5, 8] * 3)
466
- psdf = ps.from_pandas(pdf)
467
- kkey = ps.from_pandas(pkey)
468
-
469
- self.assert_eq(
470
- psdf.groupby(kkey).cumsum().sort_index(), pdf.groupby(pkey).cumsum().sort_index()
471
- )
472
- self.assert_eq(
473
- psdf.groupby(kkey)["a"].cumsum().sort_index(),
474
- pdf.groupby(pkey)["a"].cumsum().sort_index(),
475
- )
476
- self.assert_eq(
477
- psdf.groupby(kkey)[["a"]].cumsum().sort_index(),
478
- pdf.groupby(pkey)[["a"]].cumsum().sort_index(),
479
- )
480
-
481
- def test_cumprod(self):
482
- pdf = pd.DataFrame(
483
- {
484
- "a": [1, 2, 3, 4, 5, 6] * 3,
485
- "b": [1, 1, 2, 3, 5, 8] * 3,
486
- "c": [1, 4, 9, 16, 25, 36] * 3,
487
- },
488
- )
489
- pkey = pd.Series([1, 1, 2, 3, 5, 8] * 3)
490
- psdf = ps.from_pandas(pdf)
491
- kkey = ps.from_pandas(pkey)
492
-
493
- self.assert_eq(
494
- psdf.groupby(kkey).cumprod().sort_index(),
495
- pdf.groupby(pkey).cumprod().sort_index(),
496
- almost=True,
497
- )
498
- self.assert_eq(
499
- psdf.groupby(kkey)["a"].cumprod().sort_index(),
500
- pdf.groupby(pkey)["a"].cumprod().sort_index(),
501
- almost=True,
502
- )
503
- self.assert_eq(
504
- psdf.groupby(kkey)[["a"]].cumprod().sort_index(),
505
- pdf.groupby(pkey)[["a"]].cumprod().sort_index(),
506
- almost=True,
507
- )
508
-
509
- def test_diff(self):
510
- pdf = pd.DataFrame(
511
- {
512
- "a": [1, 2, 3, 4, 5, 6] * 3,
513
- "b": [1, 1, 2, 3, 5, 8] * 3,
514
- "c": [1, 4, 9, 16, 25, 36] * 3,
515
- }
516
- )
517
- pkey = pd.Series([1, 1, 2, 3, 5, 8] * 3)
518
- psdf = ps.from_pandas(pdf)
519
- kkey = ps.from_pandas(pkey)
520
-
521
- self.assert_eq(
522
- psdf.groupby(kkey).diff().sort_index(), pdf.groupby(pkey).diff().sort_index()
523
- )
524
- self.assert_eq(
525
- psdf.groupby(kkey)["a"].diff().sort_index(), pdf.groupby(pkey)["a"].diff().sort_index()
526
- )
527
- self.assert_eq(
528
- psdf.groupby(kkey)[["a"]].diff().sort_index(),
529
- pdf.groupby(pkey)[["a"]].diff().sort_index(),
530
- )
531
-
532
- self.assert_eq(psdf.groupby(kkey).diff().sum(), pdf.groupby(pkey).diff().sum().astype(int))
533
- self.assert_eq(psdf.groupby(kkey)["a"].diff().sum(), pdf.groupby(pkey)["a"].diff().sum())
534
-
535
- def test_fillna(self):
536
- pdf = pd.DataFrame(
537
- {
538
- "a": [1, 2, 3, 4, 5, 6] * 3,
539
- "b": [1, 1, 2, 3, 5, 8] * 3,
540
- "c": [1, 4, 9, 16, 25, 36] * 3,
541
- },
542
- )
543
- pkey = pd.Series([1, 1, 2, 3, 5, 8] * 3)
544
- psdf = ps.from_pandas(pdf)
545
- kkey = ps.from_pandas(pkey)
546
-
547
- self.assert_eq(
548
- psdf.groupby(kkey).rank().sort_index(), pdf.groupby(pkey).rank().sort_index()
549
- )
550
- self.assert_eq(
551
- psdf.groupby(kkey)["a"].rank().sort_index(), pdf.groupby(pkey)["a"].rank().sort_index()
552
- )
553
- self.assert_eq(
554
- psdf.groupby(kkey)[["a"]].rank().sort_index(),
555
- pdf.groupby(pkey)[["a"]].rank().sort_index(),
556
- )
557
-
558
- self.assert_eq(psdf.groupby(kkey).rank().sum(), pdf.groupby(pkey).rank().sum())
559
- self.assert_eq(psdf.groupby(kkey)["a"].rank().sum(), pdf.groupby(pkey)["a"].rank().sum())
560
-
561
- def test_shift(self):
562
- pdf = pd.DataFrame(
563
- {
564
- "a": [1, 1, 2, 2, 3, 3] * 3,
565
- "b": [1, 1, 2, 2, 3, 4] * 3,
566
- "c": [1, 4, 9, 16, 25, 36] * 3,
567
- },
568
- )
569
- pkey = pd.Series([1, 1, 2, 2, 3, 4] * 3)
570
- psdf = ps.from_pandas(pdf)
571
- kkey = ps.from_pandas(pkey)
572
-
573
- self.assert_eq(
574
- psdf.groupby(kkey).shift().sort_index(), pdf.groupby(pkey).shift().sort_index()
575
- )
576
- self.assert_eq(
577
- psdf.groupby(kkey)["a"].shift().sort_index(),
578
- pdf.groupby(pkey)["a"].shift().sort_index(),
579
- )
580
- self.assert_eq(
581
- psdf.groupby(kkey)[["a"]].shift().sort_index(),
582
- pdf.groupby(pkey)[["a"]].shift().sort_index(),
583
- )
584
-
585
- self.assert_eq(
586
- psdf.groupby(kkey).shift().sum(), pdf.groupby(pkey).shift().sum().astype(int)
587
- )
588
- self.assert_eq(psdf.groupby(kkey)["a"].shift().sum(), pdf.groupby(pkey)["a"].shift().sum())
589
-
590
- def test_fillna(self):
591
- pdf = pd.DataFrame(
592
- {
593
- "A": [1, 1, 2, 2] * 3,
594
- "B": [2, 4, None, 3] * 3,
595
- "C": [None, None, None, 1] * 3,
596
- "D": [0, 1, 5, 4] * 3,
597
- }
598
- )
599
- pkey = pd.Series([1, 1, 2, 2] * 3)
600
- psdf = ps.from_pandas(pdf)
601
- kkey = ps.from_pandas(pkey)
602
-
603
- self.assert_eq(
604
- psdf.groupby(kkey).fillna(0).sort_index(), pdf.groupby(pkey).fillna(0).sort_index()
605
- )
606
- self.assert_eq(
607
- psdf.groupby(kkey)["C"].fillna(0).sort_index(),
608
- pdf.groupby(pkey)["C"].fillna(0).sort_index(),
609
- )
610
- self.assert_eq(
611
- psdf.groupby(kkey)[["C"]].fillna(0).sort_index(),
612
- pdf.groupby(pkey)[["C"]].fillna(0).sort_index(),
613
- )
614
- self.assert_eq(
615
- psdf.groupby(kkey).fillna(method="bfill").sort_index(),
616
- pdf.groupby(pkey).fillna(method="bfill").sort_index(),
617
- )
618
- self.assert_eq(
619
- psdf.groupby(kkey)["C"].fillna(method="bfill").sort_index(),
620
- pdf.groupby(pkey)["C"].fillna(method="bfill").sort_index(),
621
- )
622
- self.assert_eq(
623
- psdf.groupby(kkey)[["C"]].fillna(method="bfill").sort_index(),
624
- pdf.groupby(pkey)[["C"]].fillna(method="bfill").sort_index(),
625
- )
626
- self.assert_eq(
627
- psdf.groupby(kkey).fillna(method="ffill").sort_index(),
628
- pdf.groupby(pkey).fillna(method="ffill").sort_index(),
629
- )
630
- self.assert_eq(
631
- psdf.groupby(kkey)["C"].fillna(method="ffill").sort_index(),
632
- pdf.groupby(pkey)["C"].fillna(method="ffill").sort_index(),
633
- )
634
- self.assert_eq(
635
- psdf.groupby(kkey)[["C"]].fillna(method="ffill").sort_index(),
636
- pdf.groupby(pkey)[["C"]].fillna(method="ffill").sort_index(),
637
- )
638
-
639
-
640
- class OpsOnDiffFramesGroupByTests(
641
- OpsOnDiffFramesGroupByTestsMixin, PandasOnSparkTestCase, SQLTestUtils
642
- ):
643
- pass
644
-
645
-
646
- if __name__ == "__main__":
647
- from pyspark.pandas.tests.test_ops_on_diff_frames_groupby import * # noqa: F401
648
-
649
- try:
650
- import xmlrunner
651
-
652
- testRunner = xmlrunner.XMLTestRunner(output="target/test-reports", verbosity=2)
653
- except ImportError:
654
- testRunner = None
655
- unittest.main(testRunner=testRunner, verbosity=2)