snowpark-connect 0.24.0__py3-none-any.whl → 0.26.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 (484) hide show
  1. snowflake/snowpark_connect/column_name_handler.py +116 -4
  2. snowflake/snowpark_connect/config.py +23 -0
  3. snowflake/snowpark_connect/constants.py +0 -29
  4. snowflake/snowpark_connect/dataframe_container.py +22 -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 +88 -29
  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 +840 -367
  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/json4s-native_2.12-3.7.0-M11.jar +0 -0
  17. snowflake/snowpark_connect/includes/jars/paranamer-2.8.3.jar +0 -0
  18. snowflake/snowpark_connect/includes/jars/sas-scala-udf_2.12-0.1.0.jar +0 -0
  19. snowflake/snowpark_connect/includes/jars/{hadoop-client-api-3.3.4.jar → spark-connect-client-jvm_2.12-3.5.6.jar} +0 -0
  20. snowflake/snowpark_connect/relation/map_column_ops.py +17 -4
  21. snowflake/snowpark_connect/relation/map_extension.py +52 -11
  22. snowflake/snowpark_connect/relation/map_join.py +258 -62
  23. snowflake/snowpark_connect/relation/map_map_partitions.py +9 -4
  24. snowflake/snowpark_connect/relation/map_relation.py +12 -1
  25. snowflake/snowpark_connect/relation/map_row_ops.py +8 -1
  26. snowflake/snowpark_connect/relation/map_sql.py +88 -11
  27. snowflake/snowpark_connect/relation/map_udtf.py +100 -46
  28. snowflake/snowpark_connect/relation/read/map_read.py +3 -3
  29. snowflake/snowpark_connect/relation/read/map_read_jdbc.py +1 -1
  30. snowflake/snowpark_connect/relation/read/map_read_json.py +8 -1
  31. snowflake/snowpark_connect/relation/read/map_read_table.py +1 -9
  32. snowflake/snowpark_connect/relation/read/reader_config.py +3 -1
  33. snowflake/snowpark_connect/relation/utils.py +44 -0
  34. snowflake/snowpark_connect/relation/write/map_write.py +175 -75
  35. snowflake/snowpark_connect/resources_initializer.py +47 -6
  36. snowflake/snowpark_connect/server.py +26 -4
  37. snowflake/snowpark_connect/type_mapping.py +29 -25
  38. snowflake/snowpark_connect/typed_column.py +14 -0
  39. snowflake/snowpark_connect/utils/artifacts.py +23 -0
  40. snowflake/snowpark_connect/utils/concurrent.py +4 -0
  41. snowflake/snowpark_connect/utils/context.py +6 -1
  42. snowflake/snowpark_connect/utils/external_udxf_cache.py +36 -0
  43. snowflake/snowpark_connect/utils/scala_udf_utils.py +596 -0
  44. snowflake/snowpark_connect/utils/session.py +4 -0
  45. snowflake/snowpark_connect/utils/telemetry.py +6 -17
  46. snowflake/snowpark_connect/utils/udf_helper.py +2 -0
  47. snowflake/snowpark_connect/utils/udf_utils.py +22 -1
  48. snowflake/snowpark_connect/utils/udtf_utils.py +1 -0
  49. snowflake/snowpark_connect/version.py +1 -1
  50. {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.26.0.dist-info}/METADATA +1 -1
  51. snowpark_connect-0.26.0.dist-info/RECORD +481 -0
  52. snowflake/snowpark_connect/includes/jars/scala-compiler-2.12.18.jar +0 -0
  53. snowflake/snowpark_connect/includes/jars/spark-kubernetes_2.12-3.5.6.jar +0 -0
  54. snowflake/snowpark_connect/includes/jars/spark-mllib_2.12-3.5.6.jar +0 -0
  55. snowflake/snowpark_connect/includes/jars/spark-streaming_2.12-3.5.6.jar +0 -0
  56. snowflake/snowpark_connect/includes/python/pyspark/errors/tests/__init__.py +0 -16
  57. snowflake/snowpark_connect/includes/python/pyspark/errors/tests/test_errors.py +0 -60
  58. snowflake/snowpark_connect/includes/python/pyspark/ml/deepspeed/tests/test_deepspeed_distributor.py +0 -306
  59. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/__init__.py +0 -16
  60. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_classification.py +0 -53
  61. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_evaluation.py +0 -50
  62. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_feature.py +0 -43
  63. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_function.py +0 -114
  64. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_pipeline.py +0 -47
  65. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_summarizer.py +0 -43
  66. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_tuning.py +0 -46
  67. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_classification.py +0 -238
  68. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_evaluation.py +0 -194
  69. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_feature.py +0 -156
  70. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_pipeline.py +0 -184
  71. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_summarizer.py +0 -78
  72. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_tuning.py +0 -292
  73. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_parity_torch_data_loader.py +0 -50
  74. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_parity_torch_distributor.py +0 -152
  75. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_algorithms.py +0 -456
  76. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_base.py +0 -96
  77. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_dl_util.py +0 -186
  78. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_evaluation.py +0 -77
  79. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_feature.py +0 -401
  80. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_functions.py +0 -528
  81. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_image.py +0 -82
  82. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_linalg.py +0 -409
  83. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_model_cache.py +0 -55
  84. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_param.py +0 -441
  85. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_persistence.py +0 -546
  86. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_pipeline.py +0 -71
  87. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_stat.py +0 -52
  88. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_training_summary.py +0 -494
  89. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_util.py +0 -85
  90. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_wrapper.py +0 -138
  91. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/__init__.py +0 -16
  92. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_basic.py +0 -151
  93. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_nested.py +0 -97
  94. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_pipeline.py +0 -143
  95. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tuning.py +0 -551
  96. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_basic.py +0 -137
  97. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_nested.py +0 -96
  98. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_pipeline.py +0 -142
  99. snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/__init__.py +0 -16
  100. snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_data_loader.py +0 -137
  101. snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_distributor.py +0 -561
  102. snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_log_communication.py +0 -172
  103. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/__init__.py +0 -16
  104. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_algorithms.py +0 -353
  105. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_feature.py +0 -192
  106. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_linalg.py +0 -680
  107. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_stat.py +0 -206
  108. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_streaming_algorithms.py +0 -471
  109. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_util.py +0 -108
  110. snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/__init__.py +0 -16
  111. snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/accessors.py +0 -1281
  112. snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/functions.py +0 -203
  113. snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/utils.py +0 -202
  114. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/__init__.py +0 -16
  115. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/__init__.py +0 -16
  116. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_any_all.py +0 -177
  117. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_apply_func.py +0 -575
  118. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_binary_ops.py +0 -235
  119. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_combine.py +0 -653
  120. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_compute.py +0 -463
  121. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_corrwith.py +0 -86
  122. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_cov.py +0 -151
  123. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_cumulative.py +0 -139
  124. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_describe.py +0 -458
  125. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_eval.py +0 -86
  126. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_melt.py +0 -202
  127. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_missing_data.py +0 -520
  128. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_pivot.py +0 -361
  129. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/__init__.py +0 -16
  130. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/__init__.py +0 -16
  131. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_any_all.py +0 -40
  132. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_apply_func.py +0 -42
  133. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_binary_ops.py +0 -40
  134. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_combine.py +0 -37
  135. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_compute.py +0 -60
  136. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_corrwith.py +0 -40
  137. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_cov.py +0 -40
  138. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_cumulative.py +0 -90
  139. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_describe.py +0 -40
  140. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_eval.py +0 -40
  141. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_melt.py +0 -40
  142. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_missing_data.py +0 -42
  143. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_pivot.py +0 -37
  144. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/__init__.py +0 -16
  145. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_base.py +0 -36
  146. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_binary_ops.py +0 -42
  147. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_boolean_ops.py +0 -47
  148. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_categorical_ops.py +0 -55
  149. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_complex_ops.py +0 -40
  150. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_date_ops.py +0 -47
  151. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_datetime_ops.py +0 -47
  152. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_null_ops.py +0 -42
  153. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_arithmetic.py +0 -43
  154. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_ops.py +0 -47
  155. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_reverse.py +0 -43
  156. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_string_ops.py +0 -47
  157. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_timedelta_ops.py +0 -47
  158. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_udt_ops.py +0 -40
  159. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/testing_utils.py +0 -226
  160. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/__init__.py +0 -16
  161. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_align.py +0 -39
  162. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_basic_slow.py +0 -55
  163. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_cov_corrwith.py +0 -39
  164. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_dot_frame.py +0 -39
  165. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_dot_series.py +0 -39
  166. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_index.py +0 -39
  167. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_series.py +0 -39
  168. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_setitem_frame.py +0 -43
  169. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_setitem_series.py +0 -43
  170. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/__init__.py +0 -16
  171. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_attrs.py +0 -40
  172. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_constructor.py +0 -39
  173. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_conversion.py +0 -42
  174. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_reindexing.py +0 -42
  175. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_reshaping.py +0 -37
  176. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_spark.py +0 -40
  177. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_take.py +0 -42
  178. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_time_series.py +0 -48
  179. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_truncate.py +0 -40
  180. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/__init__.py +0 -16
  181. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_aggregate.py +0 -40
  182. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_apply_func.py +0 -41
  183. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_cumulative.py +0 -67
  184. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_describe.py +0 -40
  185. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_groupby.py +0 -55
  186. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_head_tail.py +0 -40
  187. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_index.py +0 -38
  188. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_missing_data.py +0 -55
  189. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_split_apply.py +0 -39
  190. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_stat.py +0 -38
  191. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/__init__.py +0 -16
  192. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_align.py +0 -40
  193. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_base.py +0 -50
  194. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_category.py +0 -73
  195. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_datetime.py +0 -39
  196. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_indexing.py +0 -40
  197. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_reindex.py +0 -40
  198. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_rename.py +0 -40
  199. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_reset_index.py +0 -48
  200. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_timedelta.py +0 -39
  201. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/io/__init__.py +0 -16
  202. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/io/test_parity_io.py +0 -40
  203. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/__init__.py +0 -16
  204. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot.py +0 -45
  205. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot_matplotlib.py +0 -45
  206. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot_plotly.py +0 -49
  207. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot.py +0 -37
  208. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot_matplotlib.py +0 -53
  209. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot_plotly.py +0 -45
  210. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/__init__.py +0 -16
  211. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_all_any.py +0 -38
  212. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_arg_ops.py +0 -37
  213. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_as_of.py +0 -37
  214. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_as_type.py +0 -38
  215. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_compute.py +0 -37
  216. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_conversion.py +0 -40
  217. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_cumulative.py +0 -40
  218. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_index.py +0 -38
  219. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_missing_data.py +0 -40
  220. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_series.py +0 -37
  221. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_sort.py +0 -38
  222. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_stat.py +0 -38
  223. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_categorical.py +0 -66
  224. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_config.py +0 -37
  225. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_csv.py +0 -37
  226. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_dataframe_conversion.py +0 -42
  227. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_dataframe_spark_io.py +0 -39
  228. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_default_index.py +0 -49
  229. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ewm.py +0 -37
  230. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_expanding.py +0 -39
  231. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_extension.py +0 -49
  232. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_frame_spark.py +0 -53
  233. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_generic_functions.py +0 -43
  234. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_indexing.py +0 -49
  235. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_indexops_spark.py +0 -39
  236. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_internal.py +0 -41
  237. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_namespace.py +0 -39
  238. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_numpy_compat.py +0 -60
  239. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames.py +0 -48
  240. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby.py +0 -39
  241. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby_expanding.py +0 -44
  242. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby_rolling.py +0 -84
  243. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_repr.py +0 -37
  244. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_resample.py +0 -45
  245. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_reshape.py +0 -39
  246. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_rolling.py +0 -39
  247. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_scalars.py +0 -37
  248. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_conversion.py +0 -39
  249. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_datetime.py +0 -39
  250. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_string.py +0 -39
  251. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_spark_functions.py +0 -39
  252. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_sql.py +0 -43
  253. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_stats.py +0 -37
  254. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_typedef.py +0 -36
  255. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_utils.py +0 -37
  256. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_window.py +0 -39
  257. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/__init__.py +0 -16
  258. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_base.py +0 -107
  259. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_binary_ops.py +0 -224
  260. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_boolean_ops.py +0 -825
  261. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_categorical_ops.py +0 -562
  262. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_complex_ops.py +0 -368
  263. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_date_ops.py +0 -257
  264. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_datetime_ops.py +0 -260
  265. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_null_ops.py +0 -178
  266. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_arithmetic.py +0 -184
  267. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_ops.py +0 -497
  268. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_reverse.py +0 -140
  269. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_string_ops.py +0 -354
  270. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_timedelta_ops.py +0 -219
  271. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_udt_ops.py +0 -192
  272. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/testing_utils.py +0 -228
  273. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/__init__.py +0 -16
  274. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_align.py +0 -118
  275. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_basic_slow.py +0 -198
  276. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_cov_corrwith.py +0 -181
  277. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_dot_frame.py +0 -103
  278. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_dot_series.py +0 -141
  279. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_index.py +0 -109
  280. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_series.py +0 -136
  281. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_setitem_frame.py +0 -125
  282. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_setitem_series.py +0 -217
  283. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/__init__.py +0 -16
  284. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_attrs.py +0 -384
  285. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_constructor.py +0 -598
  286. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_conversion.py +0 -73
  287. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_reindexing.py +0 -869
  288. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_reshaping.py +0 -487
  289. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_spark.py +0 -309
  290. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_take.py +0 -156
  291. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_time_series.py +0 -149
  292. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_truncate.py +0 -163
  293. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/__init__.py +0 -16
  294. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_aggregate.py +0 -311
  295. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_apply_func.py +0 -524
  296. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_cumulative.py +0 -419
  297. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_describe.py +0 -144
  298. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_groupby.py +0 -979
  299. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_head_tail.py +0 -234
  300. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_index.py +0 -206
  301. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_missing_data.py +0 -421
  302. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_split_apply.py +0 -187
  303. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_stat.py +0 -397
  304. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/__init__.py +0 -16
  305. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_align.py +0 -100
  306. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_base.py +0 -2743
  307. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_category.py +0 -484
  308. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_datetime.py +0 -276
  309. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_indexing.py +0 -432
  310. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_reindex.py +0 -310
  311. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_rename.py +0 -257
  312. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_reset_index.py +0 -160
  313. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_timedelta.py +0 -128
  314. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/io/__init__.py +0 -16
  315. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/io/test_io.py +0 -137
  316. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/__init__.py +0 -16
  317. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot.py +0 -170
  318. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot_matplotlib.py +0 -547
  319. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot_plotly.py +0 -285
  320. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot.py +0 -106
  321. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot_matplotlib.py +0 -409
  322. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot_plotly.py +0 -247
  323. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/__init__.py +0 -16
  324. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_all_any.py +0 -105
  325. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_arg_ops.py +0 -197
  326. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_as_of.py +0 -137
  327. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_as_type.py +0 -227
  328. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_compute.py +0 -634
  329. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_conversion.py +0 -88
  330. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_cumulative.py +0 -139
  331. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_index.py +0 -475
  332. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_missing_data.py +0 -265
  333. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_series.py +0 -818
  334. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_sort.py +0 -162
  335. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_stat.py +0 -780
  336. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_categorical.py +0 -741
  337. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_config.py +0 -160
  338. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_csv.py +0 -453
  339. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_dataframe_conversion.py +0 -281
  340. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_dataframe_spark_io.py +0 -487
  341. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_default_index.py +0 -109
  342. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ewm.py +0 -434
  343. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_expanding.py +0 -253
  344. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_extension.py +0 -152
  345. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_frame_spark.py +0 -162
  346. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_generic_functions.py +0 -234
  347. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_indexing.py +0 -1339
  348. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_indexops_spark.py +0 -82
  349. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_internal.py +0 -124
  350. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_namespace.py +0 -638
  351. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_numpy_compat.py +0 -200
  352. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames.py +0 -1355
  353. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby.py +0 -655
  354. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby_expanding.py +0 -113
  355. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby_rolling.py +0 -118
  356. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_repr.py +0 -192
  357. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_resample.py +0 -346
  358. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_reshape.py +0 -495
  359. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_rolling.py +0 -263
  360. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_scalars.py +0 -59
  361. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_conversion.py +0 -85
  362. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_datetime.py +0 -364
  363. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_string.py +0 -362
  364. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_spark_functions.py +0 -46
  365. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_sql.py +0 -123
  366. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_stats.py +0 -581
  367. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_typedef.py +0 -447
  368. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_utils.py +0 -301
  369. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_window.py +0 -465
  370. snowflake/snowpark_connect/includes/python/pyspark/resource/tests/__init__.py +0 -16
  371. snowflake/snowpark_connect/includes/python/pyspark/resource/tests/test_resources.py +0 -83
  372. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/__init__.py +0 -16
  373. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/__init__.py +0 -16
  374. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/__init__.py +0 -16
  375. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/test_artifact.py +0 -420
  376. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/test_client.py +0 -358
  377. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/__init__.py +0 -16
  378. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_foreach.py +0 -36
  379. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_foreach_batch.py +0 -44
  380. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_listener.py +0 -116
  381. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_streaming.py +0 -35
  382. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_basic.py +0 -3612
  383. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_column.py +0 -1042
  384. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_function.py +0 -2381
  385. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_plan.py +0 -1060
  386. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow.py +0 -163
  387. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow_map.py +0 -38
  388. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow_python_udf.py +0 -48
  389. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_catalog.py +0 -36
  390. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_column.py +0 -55
  391. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_conf.py +0 -36
  392. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_dataframe.py +0 -96
  393. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_datasources.py +0 -44
  394. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_errors.py +0 -36
  395. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_functions.py +0 -59
  396. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_group.py +0 -36
  397. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_cogrouped_map.py +0 -59
  398. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_grouped_map.py +0 -74
  399. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_grouped_map_with_state.py +0 -62
  400. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_map.py +0 -58
  401. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf.py +0 -70
  402. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_grouped_agg.py +0 -50
  403. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_scalar.py +0 -68
  404. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_window.py +0 -40
  405. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_readwriter.py +0 -46
  406. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_serde.py +0 -44
  407. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_types.py +0 -100
  408. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_udf.py +0 -100
  409. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_udtf.py +0 -163
  410. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_session.py +0 -181
  411. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_utils.py +0 -42
  412. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/__init__.py +0 -16
  413. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_cogrouped_map.py +0 -623
  414. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_grouped_map.py +0 -869
  415. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_grouped_map_with_state.py +0 -342
  416. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_map.py +0 -436
  417. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf.py +0 -363
  418. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_grouped_agg.py +0 -592
  419. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_scalar.py +0 -1503
  420. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_typehints.py +0 -392
  421. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_typehints_with_future_annotations.py +0 -375
  422. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_window.py +0 -411
  423. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/__init__.py +0 -16
  424. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming.py +0 -401
  425. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_foreach.py +0 -295
  426. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_foreach_batch.py +0 -106
  427. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_listener.py +0 -558
  428. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow.py +0 -1346
  429. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow_map.py +0 -182
  430. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow_python_udf.py +0 -202
  431. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_catalog.py +0 -503
  432. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_column.py +0 -225
  433. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_conf.py +0 -83
  434. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_context.py +0 -201
  435. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_dataframe.py +0 -1931
  436. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_datasources.py +0 -256
  437. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_errors.py +0 -69
  438. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_functions.py +0 -1349
  439. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_group.py +0 -53
  440. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_pandas_sqlmetrics.py +0 -68
  441. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_readwriter.py +0 -283
  442. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_serde.py +0 -155
  443. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_session.py +0 -412
  444. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_types.py +0 -1581
  445. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udf.py +0 -961
  446. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udf_profiler.py +0 -165
  447. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udtf.py +0 -1456
  448. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_utils.py +0 -1686
  449. snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/__init__.py +0 -16
  450. snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_context.py +0 -184
  451. snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_dstream.py +0 -706
  452. snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_kinesis.py +0 -118
  453. snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_listener.py +0 -160
  454. snowflake/snowpark_connect/includes/python/pyspark/tests/__init__.py +0 -16
  455. snowflake/snowpark_connect/includes/python/pyspark/tests/test_appsubmit.py +0 -306
  456. snowflake/snowpark_connect/includes/python/pyspark/tests/test_broadcast.py +0 -196
  457. snowflake/snowpark_connect/includes/python/pyspark/tests/test_conf.py +0 -44
  458. snowflake/snowpark_connect/includes/python/pyspark/tests/test_context.py +0 -346
  459. snowflake/snowpark_connect/includes/python/pyspark/tests/test_daemon.py +0 -89
  460. snowflake/snowpark_connect/includes/python/pyspark/tests/test_install_spark.py +0 -124
  461. snowflake/snowpark_connect/includes/python/pyspark/tests/test_join.py +0 -69
  462. snowflake/snowpark_connect/includes/python/pyspark/tests/test_memory_profiler.py +0 -167
  463. snowflake/snowpark_connect/includes/python/pyspark/tests/test_pin_thread.py +0 -194
  464. snowflake/snowpark_connect/includes/python/pyspark/tests/test_profiler.py +0 -168
  465. snowflake/snowpark_connect/includes/python/pyspark/tests/test_rdd.py +0 -939
  466. snowflake/snowpark_connect/includes/python/pyspark/tests/test_rddbarrier.py +0 -52
  467. snowflake/snowpark_connect/includes/python/pyspark/tests/test_rddsampler.py +0 -66
  468. snowflake/snowpark_connect/includes/python/pyspark/tests/test_readwrite.py +0 -368
  469. snowflake/snowpark_connect/includes/python/pyspark/tests/test_serializers.py +0 -257
  470. snowflake/snowpark_connect/includes/python/pyspark/tests/test_shuffle.py +0 -267
  471. snowflake/snowpark_connect/includes/python/pyspark/tests/test_stage_sched.py +0 -153
  472. snowflake/snowpark_connect/includes/python/pyspark/tests/test_statcounter.py +0 -130
  473. snowflake/snowpark_connect/includes/python/pyspark/tests/test_taskcontext.py +0 -350
  474. snowflake/snowpark_connect/includes/python/pyspark/tests/test_util.py +0 -97
  475. snowflake/snowpark_connect/includes/python/pyspark/tests/test_worker.py +0 -271
  476. snowpark_connect-0.24.0.dist-info/RECORD +0 -898
  477. {snowpark_connect-0.24.0.data → snowpark_connect-0.26.0.data}/scripts/snowpark-connect +0 -0
  478. {snowpark_connect-0.24.0.data → snowpark_connect-0.26.0.data}/scripts/snowpark-session +0 -0
  479. {snowpark_connect-0.24.0.data → snowpark_connect-0.26.0.data}/scripts/snowpark-submit +0 -0
  480. {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.26.0.dist-info}/WHEEL +0 -0
  481. {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.26.0.dist-info}/licenses/LICENSE-binary +0 -0
  482. {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.26.0.dist-info}/licenses/LICENSE.txt +0 -0
  483. {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.26.0.dist-info}/licenses/NOTICE-binary +0 -0
  484. {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.26.0.dist-info}/top_level.txt +0 -0
@@ -1,869 +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 datetime
19
- import unittest
20
-
21
- from collections import OrderedDict
22
- from decimal import Decimal
23
- from typing import cast
24
-
25
- from pyspark.sql import Row
26
- from pyspark.sql.functions import (
27
- array,
28
- explode,
29
- col,
30
- lit,
31
- udf,
32
- sum,
33
- pandas_udf,
34
- PandasUDFType,
35
- window,
36
- )
37
- from pyspark.sql.types import (
38
- IntegerType,
39
- DoubleType,
40
- ArrayType,
41
- BinaryType,
42
- ByteType,
43
- LongType,
44
- DecimalType,
45
- ShortType,
46
- FloatType,
47
- StringType,
48
- BooleanType,
49
- StructType,
50
- StructField,
51
- NullType,
52
- MapType,
53
- YearMonthIntervalType,
54
- )
55
- from pyspark.errors import PythonException, PySparkTypeError
56
- from pyspark.testing.sqlutils import (
57
- ReusedSQLTestCase,
58
- have_pandas,
59
- have_pyarrow,
60
- pandas_requirement_message,
61
- pyarrow_requirement_message,
62
- )
63
- from pyspark.testing.utils import QuietTest
64
-
65
- if have_pandas:
66
- import pandas as pd
67
- from pandas.testing import assert_frame_equal
68
-
69
- if have_pyarrow:
70
- import pyarrow as pa # noqa: F401
71
-
72
-
73
- @unittest.skipIf(
74
- not have_pandas or not have_pyarrow,
75
- cast(str, pandas_requirement_message or pyarrow_requirement_message),
76
- )
77
- class GroupedApplyInPandasTestsMixin:
78
- @property
79
- def data(self):
80
- return (
81
- self.spark.range(10)
82
- .withColumn("vs", array([lit(i) for i in range(20, 30)]))
83
- .withColumn("v", explode(col("vs")))
84
- .drop("vs")
85
- )
86
-
87
- def test_supported_types(self):
88
-
89
- values = [
90
- 1,
91
- 2,
92
- 3,
93
- 4,
94
- 5,
95
- 1.1,
96
- 2.2,
97
- Decimal(1.123),
98
- [1, 2, 2],
99
- True,
100
- "hello",
101
- bytearray([0x01, 0x02]),
102
- None,
103
- ]
104
- output_fields = [
105
- ("id", IntegerType()),
106
- ("byte", ByteType()),
107
- ("short", ShortType()),
108
- ("int", IntegerType()),
109
- ("long", LongType()),
110
- ("float", FloatType()),
111
- ("double", DoubleType()),
112
- ("decim", DecimalType(10, 3)),
113
- ("array", ArrayType(IntegerType())),
114
- ("bool", BooleanType()),
115
- ("str", StringType()),
116
- ("bin", BinaryType()),
117
- ("null", NullType()),
118
- ]
119
-
120
- output_schema = StructType([StructField(*x) for x in output_fields])
121
- df = self.spark.createDataFrame([values], schema=output_schema)
122
-
123
- # Different forms of group map pandas UDF, results of these are the same
124
- udf1 = pandas_udf(
125
- lambda pdf: pdf.assign(
126
- byte=pdf.byte * 2,
127
- short=pdf.short * 2,
128
- int=pdf.int * 2,
129
- long=pdf.long * 2,
130
- float=pdf.float * 2,
131
- double=pdf.double * 2,
132
- decim=pdf.decim * 2,
133
- bool=False if pdf.bool else True,
134
- str=pdf.str + "there",
135
- array=pdf.array,
136
- bin=pdf.bin,
137
- null=pdf.null,
138
- ),
139
- output_schema,
140
- PandasUDFType.GROUPED_MAP,
141
- )
142
-
143
- udf2 = pandas_udf(
144
- lambda _, pdf: pdf.assign(
145
- byte=pdf.byte * 2,
146
- short=pdf.short * 2,
147
- int=pdf.int * 2,
148
- long=pdf.long * 2,
149
- float=pdf.float * 2,
150
- double=pdf.double * 2,
151
- decim=pdf.decim * 2,
152
- bool=False if pdf.bool else True,
153
- str=pdf.str + "there",
154
- array=pdf.array,
155
- bin=pdf.bin,
156
- null=pdf.null,
157
- ),
158
- output_schema,
159
- PandasUDFType.GROUPED_MAP,
160
- )
161
-
162
- udf3 = pandas_udf(
163
- lambda key, pdf: pdf.assign(
164
- id=key[0],
165
- byte=pdf.byte * 2,
166
- short=pdf.short * 2,
167
- int=pdf.int * 2,
168
- long=pdf.long * 2,
169
- float=pdf.float * 2,
170
- double=pdf.double * 2,
171
- decim=pdf.decim * 2,
172
- bool=False if pdf.bool else True,
173
- str=pdf.str + "there",
174
- array=pdf.array,
175
- bin=pdf.bin,
176
- null=pdf.null,
177
- ),
178
- output_schema,
179
- PandasUDFType.GROUPED_MAP,
180
- )
181
-
182
- result1 = df.groupby("id").apply(udf1).sort("id").toPandas()
183
- expected1 = df.toPandas().groupby("id").apply(udf1.func).reset_index(drop=True)
184
-
185
- result2 = df.groupby("id").apply(udf2).sort("id").toPandas()
186
- expected2 = expected1
187
-
188
- result3 = df.groupby("id").apply(udf3).sort("id").toPandas()
189
- expected3 = expected1
190
-
191
- assert_frame_equal(expected1, result1)
192
- assert_frame_equal(expected2, result2)
193
- assert_frame_equal(expected3, result3)
194
-
195
- def test_array_type_correct(self):
196
- df = self.data.withColumn("arr", array(col("id"))).repartition(1, "id")
197
-
198
- output_schema = StructType(
199
- [
200
- StructField("id", LongType()),
201
- StructField("v", IntegerType()),
202
- StructField("arr", ArrayType(LongType())),
203
- ]
204
- )
205
-
206
- udf = pandas_udf(lambda pdf: pdf, output_schema, PandasUDFType.GROUPED_MAP)
207
-
208
- result = df.groupby("id").apply(udf).sort("id").toPandas()
209
- expected = df.toPandas().groupby("id").apply(udf.func).reset_index(drop=True)
210
- assert_frame_equal(expected, result)
211
-
212
- def test_register_grouped_map_udf(self):
213
- with QuietTest(self.sc):
214
- self.check_register_grouped_map_udf()
215
-
216
- def check_register_grouped_map_udf(self):
217
- foo_udf = pandas_udf(lambda x: x, "id long", PandasUDFType.GROUPED_MAP)
218
-
219
- with self.assertRaises(PySparkTypeError) as pe:
220
- self.spark.catalog.registerFunction("foo_udf", foo_udf)
221
-
222
- self.check_error(
223
- exception=pe.exception,
224
- error_class="INVALID_UDF_EVAL_TYPE",
225
- message_parameters={
226
- "eval_type": "SQL_BATCHED_UDF, SQL_ARROW_BATCHED_UDF, SQL_SCALAR_PANDAS_UDF, "
227
- "SQL_SCALAR_PANDAS_ITER_UDF or SQL_GROUPED_AGG_PANDAS_UDF"
228
- },
229
- )
230
-
231
- def test_decorator(self):
232
- df = self.data
233
-
234
- @pandas_udf("id long, v int, v1 double, v2 long", PandasUDFType.GROUPED_MAP)
235
- def foo(pdf):
236
- return pdf.assign(v1=pdf.v * pdf.id * 1.0, v2=pdf.v + pdf.id)
237
-
238
- result = df.groupby("id").apply(foo).sort("id").toPandas()
239
- expected = df.toPandas().groupby("id").apply(foo.func).reset_index(drop=True)
240
- assert_frame_equal(expected, result)
241
-
242
- def test_coerce(self):
243
- df = self.data
244
-
245
- foo = pandas_udf(lambda pdf: pdf, "id long, v double", PandasUDFType.GROUPED_MAP)
246
-
247
- result = df.groupby("id").apply(foo).sort("id").toPandas()
248
- expected = df.toPandas().groupby("id").apply(foo.func).reset_index(drop=True)
249
- expected = expected.assign(v=expected.v.astype("float64"))
250
- assert_frame_equal(expected, result)
251
-
252
- def test_complex_groupby(self):
253
- df = self.data
254
-
255
- @pandas_udf("id long, v int, norm double", PandasUDFType.GROUPED_MAP)
256
- def normalize(pdf):
257
- v = pdf.v
258
- return pdf.assign(norm=(v - v.mean()) / v.std())
259
-
260
- result = df.groupby(col("id") % 2 == 0).apply(normalize).sort("id", "v").toPandas()
261
- pdf = df.toPandas()
262
- expected = pdf.groupby(pdf["id"] % 2 == 0, as_index=False).apply(normalize.func)
263
- expected = expected.sort_values(["id", "v"]).reset_index(drop=True)
264
- expected = expected.assign(norm=expected.norm.astype("float64"))
265
- assert_frame_equal(expected, result)
266
-
267
- def test_empty_groupby(self):
268
- df = self.data
269
-
270
- @pandas_udf("id long, v int, norm double", PandasUDFType.GROUPED_MAP)
271
- def normalize(pdf):
272
- v = pdf.v
273
- return pdf.assign(norm=(v - v.mean()) / v.std())
274
-
275
- result = df.groupby().apply(normalize).sort("id", "v").toPandas()
276
- pdf = df.toPandas()
277
- expected = normalize.func(pdf)
278
- expected = expected.sort_values(["id", "v"]).reset_index(drop=True)
279
- expected = expected.assign(norm=expected.norm.astype("float64"))
280
- assert_frame_equal(expected, result)
281
-
282
- def test_apply_in_pandas_not_returning_pandas_dataframe(self):
283
- with QuietTest(self.sc):
284
- self.check_apply_in_pandas_not_returning_pandas_dataframe()
285
-
286
- def check_apply_in_pandas_not_returning_pandas_dataframe(self):
287
- with self.assertRaisesRegex(
288
- PythonException,
289
- "Return type of the user-defined function should be pandas.DataFrame, but is tuple.",
290
- ):
291
- self._test_apply_in_pandas(lambda key, pdf: key)
292
-
293
- @staticmethod
294
- def stats_with_column_names(key, pdf):
295
- # order of column can be different to applyInPandas schema when column names are given
296
- return pd.DataFrame([(pdf.v.mean(),) + key], columns=["mean", "id"])
297
-
298
- @staticmethod
299
- def stats_with_no_column_names(key, pdf):
300
- # columns must be in order of applyInPandas schema when no columns given
301
- return pd.DataFrame([key + (pdf.v.mean(),)])
302
-
303
- def test_apply_in_pandas_returning_column_names(self):
304
- self._test_apply_in_pandas(GroupedApplyInPandasTestsMixin.stats_with_column_names)
305
-
306
- def test_apply_in_pandas_returning_no_column_names(self):
307
- self._test_apply_in_pandas(GroupedApplyInPandasTestsMixin.stats_with_no_column_names)
308
-
309
- def test_apply_in_pandas_returning_column_names_sometimes(self):
310
- def stats(key, pdf):
311
- if key[0] % 2:
312
- return GroupedApplyInPandasTestsMixin.stats_with_column_names(key, pdf)
313
- else:
314
- return GroupedApplyInPandasTestsMixin.stats_with_no_column_names(key, pdf)
315
-
316
- self._test_apply_in_pandas(stats)
317
-
318
- def test_apply_in_pandas_returning_wrong_column_names(self):
319
- with QuietTest(self.sc):
320
- self.check_apply_in_pandas_returning_wrong_column_names()
321
-
322
- def check_apply_in_pandas_returning_wrong_column_names(self):
323
- with self.assertRaisesRegex(
324
- PythonException,
325
- "Column names of the returned pandas.DataFrame do not match specified schema. "
326
- "Missing: mean. Unexpected: median, std.\n",
327
- ):
328
- self._test_apply_in_pandas(
329
- lambda key, pdf: pd.DataFrame(
330
- [key + (pdf.v.median(), pdf.v.std())], columns=["id", "median", "std"]
331
- )
332
- )
333
-
334
- def test_apply_in_pandas_returning_no_column_names_and_wrong_amount(self):
335
- with QuietTest(self.sc):
336
- self.check_apply_in_pandas_returning_no_column_names_and_wrong_amount()
337
-
338
- def check_apply_in_pandas_returning_no_column_names_and_wrong_amount(self):
339
- with self.assertRaisesRegex(
340
- PythonException,
341
- "Number of columns of the returned pandas.DataFrame doesn't match "
342
- "specified schema. Expected: 2 Actual: 3\n",
343
- ):
344
- self._test_apply_in_pandas(
345
- lambda key, pdf: pd.DataFrame([key + (pdf.v.mean(), pdf.v.std())])
346
- )
347
-
348
- def test_apply_in_pandas_returning_empty_dataframe(self):
349
- self._test_apply_in_pandas_returning_empty_dataframe(pd.DataFrame())
350
-
351
- def test_apply_in_pandas_returning_incompatible_type(self):
352
- with QuietTest(self.sc):
353
- self.check_apply_in_pandas_returning_incompatible_type()
354
-
355
- def check_apply_in_pandas_returning_incompatible_type(self):
356
- for safely in [True, False]:
357
- with self.subTest(convertToArrowArraySafely=safely), self.sql_conf(
358
- {"spark.sql.execution.pandas.convertToArrowArraySafely": safely}
359
- ):
360
- # sometimes we see ValueErrors
361
- with self.subTest(convert="string to double"):
362
- expected = (
363
- r"ValueError: Exception thrown when converting pandas.Series \(object\) "
364
- r"with name 'mean' to Arrow Array \(double\)."
365
- )
366
- if safely:
367
- expected = expected + (
368
- " It can be caused by overflows or other "
369
- "unsafe conversions warned by Arrow. Arrow safe type check "
370
- "can be disabled by using SQL config "
371
- "`spark.sql.execution.pandas.convertToArrowArraySafely`."
372
- )
373
- with self.assertRaisesRegex(PythonException, expected + "\n"):
374
- self._test_apply_in_pandas(
375
- lambda key, pdf: pd.DataFrame([key + (str(pdf.v.mean()),)]),
376
- output_schema="id long, mean double",
377
- )
378
-
379
- # sometimes we see TypeErrors
380
- with self.subTest(convert="double to string"):
381
- with self.assertRaisesRegex(
382
- PythonException,
383
- r"TypeError: Exception thrown when converting pandas.Series \(float64\) "
384
- r"with name 'mean' to Arrow Array \(string\).\n",
385
- ):
386
- self._test_apply_in_pandas(
387
- lambda key, pdf: pd.DataFrame([key + (pdf.v.mean(),)]),
388
- output_schema="id long, mean string",
389
- )
390
-
391
- def test_datatype_string(self):
392
- df = self.data
393
-
394
- foo_udf = pandas_udf(
395
- lambda pdf: pdf.assign(v1=pdf.v * pdf.id * 1.0, v2=pdf.v + pdf.id),
396
- "id long, v int, v1 double, v2 long",
397
- PandasUDFType.GROUPED_MAP,
398
- )
399
-
400
- result = df.groupby("id").apply(foo_udf).sort("id").toPandas()
401
- expected = df.toPandas().groupby("id").apply(foo_udf.func).reset_index(drop=True)
402
- assert_frame_equal(expected, result)
403
-
404
- def test_wrong_return_type(self):
405
- with QuietTest(self.sc):
406
- self.check_wrong_return_type()
407
-
408
- def check_wrong_return_type(self):
409
- with self.assertRaisesRegex(
410
- NotImplementedError,
411
- "Invalid return type.*grouped map Pandas UDF.*ArrayType.*YearMonthIntervalType",
412
- ):
413
- pandas_udf(
414
- lambda pdf: pdf,
415
- StructType().add("id", LongType()).add("v", ArrayType(YearMonthIntervalType())),
416
- PandasUDFType.GROUPED_MAP,
417
- )
418
-
419
- def test_wrong_args(self):
420
- with QuietTest(self.sc):
421
- self.check_wrong_args()
422
-
423
- def check_wrong_args(self):
424
- df = self.data
425
-
426
- with self.assertRaisesRegex(ValueError, "Invalid udf"):
427
- df.groupby("id").apply(lambda x: x)
428
- with self.assertRaisesRegex(ValueError, "Invalid udf"):
429
- df.groupby("id").apply(udf(lambda x: x, DoubleType()))
430
- with self.assertRaisesRegex(ValueError, "Invalid udf"):
431
- df.groupby("id").apply(sum(df.v))
432
- with self.assertRaisesRegex(ValueError, "Invalid udf"):
433
- df.groupby("id").apply(df.v + 1)
434
- with self.assertRaisesRegex(ValueError, "Invalid function"):
435
- df.groupby("id").apply(
436
- pandas_udf(lambda: 1, StructType([StructField("d", DoubleType())]))
437
- )
438
- with self.assertRaisesRegex(ValueError, "Invalid udf"):
439
- df.groupby("id").apply(pandas_udf(lambda x, y: x, DoubleType()))
440
- with self.assertRaisesRegex(ValueError, "Invalid udf.*GROUPED_MAP"):
441
- df.groupby("id").apply(pandas_udf(lambda x, y: x, DoubleType(), PandasUDFType.SCALAR))
442
-
443
- def test_unsupported_types(self):
444
- with QuietTest(self.sc):
445
- self.check_unsupported_types()
446
-
447
- def check_unsupported_types(self):
448
- common_err_msg = "Invalid return type.*grouped map Pandas UDF.*"
449
- unsupported_types = [
450
- StructField("array_struct", ArrayType(YearMonthIntervalType())),
451
- StructField("map", MapType(StringType(), YearMonthIntervalType())),
452
- ]
453
-
454
- for unsupported_type in unsupported_types:
455
- with self.subTest(unsupported_type=unsupported_type.name):
456
- schema = StructType([StructField("id", LongType(), True), unsupported_type])
457
-
458
- with self.assertRaisesRegex(NotImplementedError, common_err_msg):
459
- pandas_udf(lambda x: x, schema, PandasUDFType.GROUPED_MAP)
460
-
461
- # Regression test for SPARK-23314
462
- def test_timestamp_dst(self):
463
- # Daylight saving time for Los Angeles for 2015 is Sun, Nov 1 at 2:00 am
464
- dt = [
465
- datetime.datetime(2015, 11, 1, 0, 30),
466
- datetime.datetime(2015, 11, 1, 1, 30),
467
- datetime.datetime(2015, 11, 1, 2, 30),
468
- ]
469
- df = self.spark.createDataFrame(dt, "timestamp").toDF("time")
470
- foo_udf = pandas_udf(lambda pdf: pdf, "time timestamp", PandasUDFType.GROUPED_MAP)
471
- result = df.groupby("time").apply(foo_udf).sort("time")
472
- assert_frame_equal(df.toPandas(), result.toPandas())
473
-
474
- def test_udf_with_key(self):
475
- import numpy as np
476
-
477
- df = self.data
478
- pdf = df.toPandas()
479
-
480
- def foo1(key, pdf):
481
- assert type(key) == tuple
482
- assert type(key[0]) == np.int64
483
-
484
- return pdf.assign(
485
- v1=key[0], v2=pdf.v * key[0], v3=pdf.v * pdf.id, v4=pdf.v * pdf.id.mean()
486
- )
487
-
488
- def foo2(key, pdf):
489
- assert type(key) == tuple
490
- assert type(key[0]) == np.int64
491
- assert type(key[1]) == np.int32
492
-
493
- return pdf.assign(v1=key[0], v2=key[1], v3=pdf.v * key[0], v4=pdf.v + key[1])
494
-
495
- def foo3(key, pdf):
496
- assert type(key) == tuple
497
- assert len(key) == 0
498
- return pdf.assign(v1=pdf.v * pdf.id)
499
-
500
- # v2 is int because numpy.int64 * pd.Series<int32> results in pd.Series<int32>
501
- # v3 is long because pd.Series<int64> * pd.Series<int32> results in pd.Series<int64>
502
- udf1 = pandas_udf(
503
- foo1, "id long, v int, v1 long, v2 int, v3 long, v4 double", PandasUDFType.GROUPED_MAP
504
- )
505
-
506
- udf2 = pandas_udf(
507
- foo2, "id long, v int, v1 long, v2 int, v3 int, v4 int", PandasUDFType.GROUPED_MAP
508
- )
509
-
510
- udf3 = pandas_udf(foo3, "id long, v int, v1 long", PandasUDFType.GROUPED_MAP)
511
-
512
- # Test groupby column
513
- result1 = df.groupby("id").apply(udf1).sort("id", "v").toPandas()
514
- expected1 = (
515
- pdf.groupby("id", as_index=False)
516
- .apply(lambda x: udf1.func((x.id.iloc[0],), x))
517
- .sort_values(["id", "v"])
518
- .reset_index(drop=True)
519
- )
520
- assert_frame_equal(expected1, result1)
521
-
522
- # Test groupby expression
523
- result2 = df.groupby(df.id % 2).apply(udf1).sort("id", "v").toPandas()
524
- expected2 = (
525
- pdf.groupby(pdf.id % 2, as_index=False)
526
- .apply(lambda x: udf1.func((x.id.iloc[0] % 2,), x))
527
- .sort_values(["id", "v"])
528
- .reset_index(drop=True)
529
- )
530
- assert_frame_equal(expected2, result2)
531
-
532
- # Test complex groupby
533
- result3 = df.groupby(df.id, df.v % 2).apply(udf2).sort("id", "v").toPandas()
534
- expected3 = (
535
- pdf.groupby([pdf.id, pdf.v % 2], as_index=False)
536
- .apply(
537
- lambda x: udf2.func(
538
- (
539
- x.id.iloc[0],
540
- (x.v % 2).iloc[0],
541
- ),
542
- x,
543
- )
544
- )
545
- .sort_values(["id", "v"])
546
- .reset_index(drop=True)
547
- )
548
- assert_frame_equal(expected3, result3)
549
-
550
- # Test empty groupby
551
- result4 = df.groupby().apply(udf3).sort("id", "v").toPandas()
552
- expected4 = udf3.func((), pdf)
553
- assert_frame_equal(expected4, result4)
554
-
555
- def test_column_order(self):
556
- with QuietTest(self.sc):
557
- self.check_column_order()
558
-
559
- def check_column_order(self):
560
-
561
- # Helper function to set column names from a list
562
- def rename_pdf(pdf, names):
563
- pdf.rename(
564
- columns={old: new for old, new in zip(pd_result.columns, names)}, inplace=True
565
- )
566
-
567
- df = self.data
568
- grouped_df = df.groupby("id")
569
- grouped_pdf = df.toPandas().groupby("id", as_index=False)
570
-
571
- # Function returns a pdf with required column names, but order could be arbitrary using dict
572
- def change_col_order(pdf):
573
- # Constructing a DataFrame from a dict should result in the same order,
574
- # but use OrderedDict to ensure the pdf column order is different than schema
575
- return pd.DataFrame.from_dict(
576
- OrderedDict([("id", pdf.id), ("u", pdf.v * 2), ("v", pdf.v)])
577
- )
578
-
579
- ordered_udf = pandas_udf(
580
- change_col_order, "id long, v int, u int", PandasUDFType.GROUPED_MAP
581
- )
582
-
583
- # The UDF result should assign columns by name from the pdf
584
- result = grouped_df.apply(ordered_udf).sort("id", "v").select("id", "u", "v").toPandas()
585
- pd_result = grouped_pdf.apply(change_col_order)
586
- expected = pd_result.sort_values(["id", "v"]).reset_index(drop=True)
587
- assert_frame_equal(expected, result)
588
-
589
- # Function returns a pdf with positional columns, indexed by range
590
- def range_col_order(pdf):
591
- # Create a DataFrame with positional columns, fix types to long
592
- return pd.DataFrame(list(zip(pdf.id, pdf.v * 3, pdf.v)), dtype="int64")
593
-
594
- range_udf = pandas_udf(
595
- range_col_order, "id long, u long, v long", PandasUDFType.GROUPED_MAP
596
- )
597
-
598
- # The UDF result uses positional columns from the pdf
599
- result = grouped_df.apply(range_udf).sort("id", "v").select("id", "u", "v").toPandas()
600
- pd_result = grouped_pdf.apply(range_col_order)
601
- rename_pdf(pd_result, ["id", "u", "v"])
602
- expected = pd_result.sort_values(["id", "v"]).reset_index(drop=True)
603
- assert_frame_equal(expected, result)
604
-
605
- # Function returns a pdf with columns indexed with integers
606
- def int_index(pdf):
607
- return pd.DataFrame(OrderedDict([(0, pdf.id), (1, pdf.v * 4), (2, pdf.v)]))
608
-
609
- int_index_udf = pandas_udf(int_index, "id long, u int, v int", PandasUDFType.GROUPED_MAP)
610
-
611
- # The UDF result should assign columns by position of integer index
612
- result = grouped_df.apply(int_index_udf).sort("id", "v").select("id", "u", "v").toPandas()
613
- pd_result = grouped_pdf.apply(int_index)
614
- rename_pdf(pd_result, ["id", "u", "v"])
615
- expected = pd_result.sort_values(["id", "v"]).reset_index(drop=True)
616
- assert_frame_equal(expected, result)
617
-
618
- @pandas_udf("id long, v int", PandasUDFType.GROUPED_MAP)
619
- def column_name_typo(pdf):
620
- return pd.DataFrame({"iid": pdf.id, "v": pdf.v})
621
-
622
- @pandas_udf("id long, v decimal", PandasUDFType.GROUPED_MAP)
623
- def invalid_positional_types(pdf):
624
- return pd.DataFrame([(1, datetime.date(2020, 10, 5))])
625
-
626
- with self.sql_conf({"spark.sql.execution.pandas.convertToArrowArraySafely": False}):
627
- with self.assertRaisesRegex(
628
- PythonException,
629
- "Column names of the returned pandas.DataFrame do not match "
630
- "specified schema. Missing: id. Unexpected: iid.\n",
631
- ):
632
- grouped_df.apply(column_name_typo).collect()
633
- with self.assertRaisesRegex(Exception, "[D|d]ecimal.*got.*date"):
634
- grouped_df.apply(invalid_positional_types).collect()
635
-
636
- def test_positional_assignment_conf(self):
637
- with self.sql_conf(
638
- {"spark.sql.legacy.execution.pandas.groupedMap.assignColumnsByName": False}
639
- ):
640
-
641
- @pandas_udf("a string, b float", PandasUDFType.GROUPED_MAP)
642
- def foo(_):
643
- return pd.DataFrame([("hi", 1)], columns=["x", "y"])
644
-
645
- df = self.data
646
- result = df.groupBy("id").apply(foo).select("a", "b").collect()
647
- for r in result:
648
- self.assertEqual(r.a, "hi")
649
- self.assertEqual(r.b, 1)
650
-
651
- def test_self_join_with_pandas(self):
652
- @pandas_udf("key long, col string", PandasUDFType.GROUPED_MAP)
653
- def dummy_pandas_udf(df):
654
- return df[["key", "col"]]
655
-
656
- df = self.spark.createDataFrame(
657
- [Row(key=1, col="A"), Row(key=1, col="B"), Row(key=2, col="C")]
658
- )
659
- df_with_pandas = df.groupBy("key").apply(dummy_pandas_udf)
660
-
661
- # this was throwing an AnalysisException before SPARK-24208
662
- res = df_with_pandas.alias("temp0").join(
663
- df_with_pandas.alias("temp1"), col("temp0.key") == col("temp1.key")
664
- )
665
- self.assertEqual(res.count(), 5)
666
-
667
- def test_mixed_scalar_udfs_followed_by_groupby_apply(self):
668
- df = self.spark.range(0, 10).toDF("v1")
669
- df = df.withColumn("v2", udf(lambda x: x + 1, "int")(df["v1"])).withColumn(
670
- "v3", pandas_udf(lambda x: x + 2, "int")(df["v1"])
671
- )
672
-
673
- result = df.groupby().apply(
674
- pandas_udf(
675
- lambda x: pd.DataFrame([x.sum().sum()]), "sum int", PandasUDFType.GROUPED_MAP
676
- )
677
- )
678
-
679
- self.assertEqual(result.collect()[0]["sum"], 165)
680
-
681
- def test_grouped_with_empty_partition(self):
682
- data = [Row(id=1, x=2), Row(id=1, x=3), Row(id=2, x=4)]
683
- expected = [Row(id=1, x=5), Row(id=1, x=5), Row(id=2, x=4)]
684
- num_parts = len(data) + 1
685
- df = self.spark.createDataFrame(self.sc.parallelize(data, numSlices=num_parts))
686
-
687
- f = pandas_udf(
688
- lambda pdf: pdf.assign(x=pdf["x"].sum()), "id long, x int", PandasUDFType.GROUPED_MAP
689
- )
690
-
691
- result = df.groupBy("id").apply(f).collect()
692
- self.assertEqual(result, expected)
693
-
694
- def test_grouped_over_window(self):
695
-
696
- data = [
697
- (0, 1, "2018-03-10T00:00:00+00:00", [0]),
698
- (1, 2, "2018-03-11T00:00:00+00:00", [0]),
699
- (2, 2, "2018-03-12T00:00:00+00:00", [0]),
700
- (3, 3, "2018-03-15T00:00:00+00:00", [0]),
701
- (4, 3, "2018-03-16T00:00:00+00:00", [0]),
702
- (5, 3, "2018-03-17T00:00:00+00:00", [0]),
703
- (6, 3, "2018-03-21T00:00:00+00:00", [0]),
704
- ]
705
-
706
- expected = {0: [0], 1: [1, 2], 2: [1, 2], 3: [3, 4, 5], 4: [3, 4, 5], 5: [3, 4, 5], 6: [6]}
707
-
708
- df = self.spark.createDataFrame(data, ["id", "group", "ts", "result"])
709
- df = df.select(col("id"), col("group"), col("ts").cast("timestamp"), col("result"))
710
-
711
- def f(pdf):
712
- # Assign each result element the ids of the windowed group
713
- pdf["result"] = [pdf["id"]] * len(pdf)
714
- return pdf
715
-
716
- result = (
717
- df.groupby("group", window("ts", "5 days"))
718
- .applyInPandas(f, df.schema)
719
- .select("id", "result")
720
- .orderBy("id")
721
- .collect()
722
- )
723
-
724
- self.assertListEqual([Row(id=key, result=val) for key, val in expected.items()], result)
725
-
726
- def test_grouped_over_window_with_key(self):
727
-
728
- data = [
729
- (0, 1, "2018-03-10T00:00:00+00:00", [0]),
730
- (1, 2, "2018-03-11T00:00:00+00:00", [0]),
731
- (2, 2, "2018-03-12T00:00:00+00:00", [0]),
732
- (3, 3, "2018-03-15T00:00:00+00:00", [0]),
733
- (4, 3, "2018-03-16T00:00:00+00:00", [0]),
734
- (5, 3, "2018-03-17T00:00:00+00:00", [0]),
735
- (6, 3, "2018-03-21T00:00:00+00:00", [0]),
736
- ]
737
-
738
- timezone = self.spark.conf.get("spark.sql.session.timeZone")
739
- expected_window = [
740
- {
741
- key: (
742
- pd.Timestamp(ts)
743
- .tz_localize(datetime.timezone.utc)
744
- .tz_convert(timezone)
745
- .tz_localize(None)
746
- )
747
- for key, ts in w.items()
748
- }
749
- for w in [
750
- {
751
- "start": datetime.datetime(2018, 3, 10, 0, 0),
752
- "end": datetime.datetime(2018, 3, 15, 0, 0),
753
- },
754
- {
755
- "start": datetime.datetime(2018, 3, 15, 0, 0),
756
- "end": datetime.datetime(2018, 3, 20, 0, 0),
757
- },
758
- {
759
- "start": datetime.datetime(2018, 3, 20, 0, 0),
760
- "end": datetime.datetime(2018, 3, 25, 0, 0),
761
- },
762
- ]
763
- ]
764
-
765
- expected_key = {
766
- 0: (1, expected_window[0]),
767
- 1: (2, expected_window[0]),
768
- 2: (2, expected_window[0]),
769
- 3: (3, expected_window[1]),
770
- 4: (3, expected_window[1]),
771
- 5: (3, expected_window[1]),
772
- 6: (3, expected_window[2]),
773
- }
774
-
775
- # id -> array of group with len of num records in window
776
- expected = {0: [1], 1: [2, 2], 2: [2, 2], 3: [3, 3, 3], 4: [3, 3, 3], 5: [3, 3, 3], 6: [3]}
777
-
778
- df = self.spark.createDataFrame(data, ["id", "group", "ts", "result"])
779
- df = df.select(col("id"), col("group"), col("ts").cast("timestamp"), col("result"))
780
-
781
- def f(key, pdf):
782
- group = key[0]
783
- window_range = key[1]
784
-
785
- # Make sure the key with group and window values are correct
786
- for _, i in pdf.id.items():
787
- assert expected_key[i][0] == group, "{} != {}".format(expected_key[i][0], group)
788
- assert expected_key[i][1] == window_range, "{} != {}".format(
789
- expected_key[i][1], window_range
790
- )
791
-
792
- return pdf.assign(result=[[group] * len(pdf)] * len(pdf))
793
-
794
- result = (
795
- df.groupby("group", window("ts", "5 days"))
796
- .applyInPandas(f, df.schema)
797
- .select("id", "result")
798
- .orderBy("id")
799
- .collect()
800
- )
801
-
802
- self.assertListEqual([Row(id=key, result=val) for key, val in expected.items()], result)
803
-
804
- def test_case_insensitive_grouping_column(self):
805
- # SPARK-31915: case-insensitive grouping column should work.
806
- def my_pandas_udf(pdf):
807
- return pdf.assign(score=0.5)
808
-
809
- df = self.spark.createDataFrame([[1, 1]], ["column", "score"])
810
- row = (
811
- df.groupby("COLUMN")
812
- .applyInPandas(my_pandas_udf, schema="column integer, score float")
813
- .first()
814
- )
815
- self.assertEqual(row.asDict(), Row(column=1, score=0.5).asDict())
816
-
817
- def _test_apply_in_pandas(self, f, output_schema="id long, mean double"):
818
- df = self.data
819
-
820
- result = (
821
- df.groupby("id").applyInPandas(f, schema=output_schema).sort("id", "mean").toPandas()
822
- )
823
- expected = df.select("id").distinct().withColumn("mean", lit(24.5)).toPandas()
824
-
825
- assert_frame_equal(expected, result)
826
-
827
- def _test_apply_in_pandas_returning_empty_dataframe(self, empty_df):
828
- """Tests some returned DataFrames are empty."""
829
- df = self.data
830
-
831
- def stats(key, pdf):
832
- if key[0] % 2 == 0:
833
- return GroupedApplyInPandasTestsMixin.stats_with_no_column_names(key, pdf)
834
- return empty_df
835
-
836
- result = (
837
- df.groupby("id")
838
- .applyInPandas(stats, schema="id long, mean double")
839
- .sort("id", "mean")
840
- .collect()
841
- )
842
-
843
- actual_ids = {row[0] for row in result}
844
- expected_ids = {row[0] for row in self.data.collect() if row[0] % 2 == 0}
845
- self.assertSetEqual(expected_ids, actual_ids)
846
- self.assertEqual(len(expected_ids), len(result))
847
- for row in result:
848
- self.assertEqual(24.5, row[1])
849
-
850
- def _test_apply_in_pandas_returning_empty_dataframe_error(self, empty_df, error):
851
- with QuietTest(self.sc):
852
- with self.assertRaisesRegex(PythonException, error):
853
- self._test_apply_in_pandas_returning_empty_dataframe(empty_df)
854
-
855
-
856
- class GroupedApplyInPandasTests(GroupedApplyInPandasTestsMixin, ReusedSQLTestCase):
857
- pass
858
-
859
-
860
- if __name__ == "__main__":
861
- from pyspark.sql.tests.pandas.test_pandas_grouped_map import * # noqa: F401
862
-
863
- try:
864
- import xmlrunner
865
-
866
- testRunner = xmlrunner.XMLTestRunner(output="target/test-reports", verbosity=2)
867
- except ImportError:
868
- testRunner = None
869
- unittest.main(testRunner=testRunner, verbosity=2)