snowpark-connect 0.23.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.
- snowflake/snowpark_connect/column_name_handler.py +116 -4
- snowflake/snowpark_connect/config.py +13 -0
- snowflake/snowpark_connect/constants.py +0 -29
- snowflake/snowpark_connect/dataframe_container.py +6 -0
- snowflake/snowpark_connect/execute_plan/map_execution_command.py +56 -1
- snowflake/snowpark_connect/expression/function_defaults.py +207 -0
- snowflake/snowpark_connect/expression/literal.py +18 -2
- snowflake/snowpark_connect/expression/map_cast.py +5 -8
- snowflake/snowpark_connect/expression/map_expression.py +10 -1
- snowflake/snowpark_connect/expression/map_extension.py +12 -2
- snowflake/snowpark_connect/expression/map_sql_expression.py +23 -1
- snowflake/snowpark_connect/expression/map_udf.py +26 -8
- snowflake/snowpark_connect/expression/map_unresolved_attribute.py +199 -15
- snowflake/snowpark_connect/expression/map_unresolved_extract_value.py +44 -16
- snowflake/snowpark_connect/expression/map_unresolved_function.py +836 -365
- snowflake/snowpark_connect/expression/map_unresolved_star.py +3 -2
- snowflake/snowpark_connect/hidden_column.py +39 -0
- snowflake/snowpark_connect/includes/jars/hadoop-client-api-trimmed-3.3.4.jar +0 -0
- snowflake/snowpark_connect/includes/jars/{hadoop-client-api-3.3.4.jar → spark-connect-client-jvm_2.12-3.5.6.jar} +0 -0
- snowflake/snowpark_connect/relation/map_column_ops.py +18 -36
- snowflake/snowpark_connect/relation/map_extension.py +56 -15
- snowflake/snowpark_connect/relation/map_join.py +258 -62
- snowflake/snowpark_connect/relation/map_row_ops.py +2 -29
- snowflake/snowpark_connect/relation/map_sql.py +88 -11
- snowflake/snowpark_connect/relation/map_udtf.py +4 -2
- snowflake/snowpark_connect/relation/read/map_read.py +3 -3
- snowflake/snowpark_connect/relation/read/map_read_jdbc.py +1 -1
- snowflake/snowpark_connect/relation/read/map_read_json.py +8 -1
- snowflake/snowpark_connect/relation/read/map_read_table.py +1 -9
- snowflake/snowpark_connect/relation/read/reader_config.py +3 -1
- snowflake/snowpark_connect/relation/read/utils.py +6 -7
- snowflake/snowpark_connect/relation/utils.py +1 -170
- snowflake/snowpark_connect/relation/write/map_write.py +62 -53
- snowflake/snowpark_connect/resources_initializer.py +29 -1
- snowflake/snowpark_connect/server.py +18 -3
- snowflake/snowpark_connect/type_mapping.py +29 -25
- snowflake/snowpark_connect/typed_column.py +14 -0
- snowflake/snowpark_connect/utils/artifacts.py +23 -0
- snowflake/snowpark_connect/utils/context.py +6 -1
- snowflake/snowpark_connect/utils/scala_udf_utils.py +588 -0
- snowflake/snowpark_connect/utils/telemetry.py +6 -17
- snowflake/snowpark_connect/utils/udf_helper.py +2 -0
- snowflake/snowpark_connect/utils/udf_utils.py +38 -7
- snowflake/snowpark_connect/utils/udtf_utils.py +17 -3
- snowflake/snowpark_connect/version.py +1 -1
- {snowpark_connect-0.23.0.dist-info → snowpark_connect-0.25.0.dist-info}/METADATA +1 -1
- snowpark_connect-0.25.0.dist-info/RECORD +477 -0
- snowflake/snowpark_connect/includes/jars/scala-compiler-2.12.18.jar +0 -0
- snowflake/snowpark_connect/includes/jars/spark-kubernetes_2.12-3.5.6.jar +0 -0
- snowflake/snowpark_connect/includes/jars/spark-mllib_2.12-3.5.6.jar +0 -0
- snowflake/snowpark_connect/includes/jars/spark-streaming_2.12-3.5.6.jar +0 -0
- snowflake/snowpark_connect/includes/python/pyspark/errors/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/errors/tests/test_errors.py +0 -60
- snowflake/snowpark_connect/includes/python/pyspark/ml/deepspeed/tests/test_deepspeed_distributor.py +0 -306
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_classification.py +0 -53
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_evaluation.py +0 -50
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_feature.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_function.py +0 -114
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_pipeline.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_summarizer.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_tuning.py +0 -46
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_classification.py +0 -238
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_evaluation.py +0 -194
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_feature.py +0 -156
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_pipeline.py +0 -184
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_summarizer.py +0 -78
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_tuning.py +0 -292
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_parity_torch_data_loader.py +0 -50
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_parity_torch_distributor.py +0 -152
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_algorithms.py +0 -456
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_base.py +0 -96
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_dl_util.py +0 -186
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_evaluation.py +0 -77
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_feature.py +0 -401
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_functions.py +0 -528
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_image.py +0 -82
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_linalg.py +0 -409
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_model_cache.py +0 -55
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_param.py +0 -441
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_persistence.py +0 -546
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_pipeline.py +0 -71
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_stat.py +0 -52
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_training_summary.py +0 -494
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_util.py +0 -85
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_wrapper.py +0 -138
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_basic.py +0 -151
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_nested.py +0 -97
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_pipeline.py +0 -143
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tuning.py +0 -551
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_basic.py +0 -137
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_nested.py +0 -96
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_pipeline.py +0 -142
- snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_data_loader.py +0 -137
- snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_distributor.py +0 -561
- snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_log_communication.py +0 -172
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_algorithms.py +0 -353
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_feature.py +0 -192
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_linalg.py +0 -680
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_stat.py +0 -206
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_streaming_algorithms.py +0 -471
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_util.py +0 -108
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_any_all.py +0 -177
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_apply_func.py +0 -575
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_binary_ops.py +0 -235
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_combine.py +0 -653
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_compute.py +0 -463
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_corrwith.py +0 -86
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_cov.py +0 -151
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_cumulative.py +0 -139
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_describe.py +0 -458
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_eval.py +0 -86
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_melt.py +0 -202
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_missing_data.py +0 -520
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_pivot.py +0 -361
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_any_all.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_apply_func.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_binary_ops.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_combine.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_compute.py +0 -60
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_corrwith.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_cov.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_cumulative.py +0 -90
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_describe.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_eval.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_melt.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_missing_data.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_pivot.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_base.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_binary_ops.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_boolean_ops.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_categorical_ops.py +0 -55
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_complex_ops.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_date_ops.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_datetime_ops.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_null_ops.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_arithmetic.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_ops.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_reverse.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_string_ops.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_timedelta_ops.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_udt_ops.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/testing_utils.py +0 -226
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_align.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_basic_slow.py +0 -55
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_cov_corrwith.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_dot_frame.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_dot_series.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_index.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_series.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_setitem_frame.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_setitem_series.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_attrs.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_constructor.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_conversion.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_reindexing.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_reshaping.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_spark.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_take.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_time_series.py +0 -48
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_truncate.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_aggregate.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_apply_func.py +0 -41
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_cumulative.py +0 -67
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_describe.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_groupby.py +0 -55
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_head_tail.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_index.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_missing_data.py +0 -55
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_split_apply.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_stat.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_align.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_base.py +0 -50
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_category.py +0 -73
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_datetime.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_indexing.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_reindex.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_rename.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_reset_index.py +0 -48
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_timedelta.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/io/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/io/test_parity_io.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot.py +0 -45
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot_matplotlib.py +0 -45
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot_plotly.py +0 -49
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot_matplotlib.py +0 -53
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot_plotly.py +0 -45
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_all_any.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_arg_ops.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_as_of.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_as_type.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_compute.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_conversion.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_cumulative.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_index.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_missing_data.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_series.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_sort.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_stat.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_categorical.py +0 -66
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_config.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_csv.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_dataframe_conversion.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_dataframe_spark_io.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_default_index.py +0 -49
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ewm.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_expanding.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_extension.py +0 -49
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_frame_spark.py +0 -53
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_generic_functions.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_indexing.py +0 -49
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_indexops_spark.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_internal.py +0 -41
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_namespace.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_numpy_compat.py +0 -60
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames.py +0 -48
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby_expanding.py +0 -44
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby_rolling.py +0 -84
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_repr.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_resample.py +0 -45
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_reshape.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_rolling.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_scalars.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_conversion.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_datetime.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_string.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_spark_functions.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_sql.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_stats.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_typedef.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_utils.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_window.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_base.py +0 -107
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_binary_ops.py +0 -224
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_boolean_ops.py +0 -825
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_categorical_ops.py +0 -562
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_complex_ops.py +0 -368
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_date_ops.py +0 -257
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_datetime_ops.py +0 -260
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_null_ops.py +0 -178
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_arithmetic.py +0 -184
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_ops.py +0 -497
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_reverse.py +0 -140
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_string_ops.py +0 -354
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_timedelta_ops.py +0 -219
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_udt_ops.py +0 -192
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/testing_utils.py +0 -228
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_align.py +0 -118
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_basic_slow.py +0 -198
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_cov_corrwith.py +0 -181
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_dot_frame.py +0 -103
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_dot_series.py +0 -141
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_index.py +0 -109
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_series.py +0 -136
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_setitem_frame.py +0 -125
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_setitem_series.py +0 -217
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_attrs.py +0 -384
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_constructor.py +0 -598
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_conversion.py +0 -73
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_reindexing.py +0 -869
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_reshaping.py +0 -487
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_spark.py +0 -309
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_take.py +0 -156
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_time_series.py +0 -149
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_truncate.py +0 -163
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_aggregate.py +0 -311
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_apply_func.py +0 -524
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_cumulative.py +0 -419
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_describe.py +0 -144
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_groupby.py +0 -979
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_head_tail.py +0 -234
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_index.py +0 -206
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_missing_data.py +0 -421
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_split_apply.py +0 -187
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_stat.py +0 -397
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_align.py +0 -100
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_base.py +0 -2743
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_category.py +0 -484
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_datetime.py +0 -276
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_indexing.py +0 -432
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_reindex.py +0 -310
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_rename.py +0 -257
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_reset_index.py +0 -160
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_timedelta.py +0 -128
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/io/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/io/test_io.py +0 -137
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot.py +0 -170
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot_matplotlib.py +0 -547
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot_plotly.py +0 -285
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot.py +0 -106
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot_matplotlib.py +0 -409
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot_plotly.py +0 -247
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_all_any.py +0 -105
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_arg_ops.py +0 -197
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_as_of.py +0 -137
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_as_type.py +0 -227
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_compute.py +0 -634
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_conversion.py +0 -88
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_cumulative.py +0 -139
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_index.py +0 -475
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_missing_data.py +0 -265
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_series.py +0 -818
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_sort.py +0 -162
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_stat.py +0 -780
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_categorical.py +0 -741
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_config.py +0 -160
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_csv.py +0 -453
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_dataframe_conversion.py +0 -281
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_dataframe_spark_io.py +0 -487
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_default_index.py +0 -109
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ewm.py +0 -434
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_expanding.py +0 -253
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_extension.py +0 -152
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_frame_spark.py +0 -162
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_generic_functions.py +0 -234
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_indexing.py +0 -1339
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_indexops_spark.py +0 -82
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_internal.py +0 -124
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_namespace.py +0 -638
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_numpy_compat.py +0 -200
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames.py +0 -1355
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby.py +0 -655
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby_expanding.py +0 -113
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby_rolling.py +0 -118
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_repr.py +0 -192
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_resample.py +0 -346
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_reshape.py +0 -495
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_rolling.py +0 -263
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_scalars.py +0 -59
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_conversion.py +0 -85
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_datetime.py +0 -364
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_string.py +0 -362
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_spark_functions.py +0 -46
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_sql.py +0 -123
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_stats.py +0 -581
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_typedef.py +0 -447
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_utils.py +0 -301
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_window.py +0 -465
- snowflake/snowpark_connect/includes/python/pyspark/resource/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/resource/tests/test_resources.py +0 -83
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/test_artifact.py +0 -420
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/test_client.py +0 -358
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_foreach.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_foreach_batch.py +0 -44
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_listener.py +0 -116
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_streaming.py +0 -35
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_basic.py +0 -3612
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_column.py +0 -1042
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_function.py +0 -2381
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_plan.py +0 -1060
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow.py +0 -163
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow_map.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow_python_udf.py +0 -48
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_catalog.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_column.py +0 -55
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_conf.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_dataframe.py +0 -96
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_datasources.py +0 -44
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_errors.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_functions.py +0 -59
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_group.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_cogrouped_map.py +0 -59
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_grouped_map.py +0 -74
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_grouped_map_with_state.py +0 -62
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_map.py +0 -58
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf.py +0 -70
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_grouped_agg.py +0 -50
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_scalar.py +0 -68
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_window.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_readwriter.py +0 -46
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_serde.py +0 -44
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_types.py +0 -100
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_udf.py +0 -100
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_udtf.py +0 -163
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_session.py +0 -181
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_utils.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_cogrouped_map.py +0 -623
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_grouped_map.py +0 -869
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_grouped_map_with_state.py +0 -342
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_map.py +0 -436
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf.py +0 -363
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_grouped_agg.py +0 -592
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_scalar.py +0 -1503
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_typehints.py +0 -392
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_typehints_with_future_annotations.py +0 -375
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_window.py +0 -411
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming.py +0 -401
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_foreach.py +0 -295
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_foreach_batch.py +0 -106
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_listener.py +0 -558
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow.py +0 -1346
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow_map.py +0 -182
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow_python_udf.py +0 -202
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_catalog.py +0 -503
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_column.py +0 -225
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_conf.py +0 -83
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_context.py +0 -201
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_dataframe.py +0 -1931
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_datasources.py +0 -256
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_errors.py +0 -69
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_functions.py +0 -1349
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_group.py +0 -53
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_pandas_sqlmetrics.py +0 -68
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_readwriter.py +0 -283
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_serde.py +0 -155
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_session.py +0 -412
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_types.py +0 -1581
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udf.py +0 -961
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udf_profiler.py +0 -165
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udtf.py +0 -1456
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_utils.py +0 -1686
- snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_context.py +0 -184
- snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_dstream.py +0 -706
- snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_kinesis.py +0 -118
- snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_listener.py +0 -160
- snowflake/snowpark_connect/includes/python/pyspark/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_appsubmit.py +0 -306
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_broadcast.py +0 -196
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_conf.py +0 -44
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_context.py +0 -346
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_daemon.py +0 -89
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_install_spark.py +0 -124
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_join.py +0 -69
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_memory_profiler.py +0 -167
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_pin_thread.py +0 -194
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_profiler.py +0 -168
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_rdd.py +0 -939
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_rddbarrier.py +0 -52
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_rddsampler.py +0 -66
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_readwrite.py +0 -368
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_serializers.py +0 -257
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_shuffle.py +0 -267
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_stage_sched.py +0 -153
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_statcounter.py +0 -130
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_taskcontext.py +0 -350
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_util.py +0 -97
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_worker.py +0 -271
- snowpark_connect-0.23.0.dist-info/RECORD +0 -893
- {snowpark_connect-0.23.0.data → snowpark_connect-0.25.0.data}/scripts/snowpark-connect +0 -0
- {snowpark_connect-0.23.0.data → snowpark_connect-0.25.0.data}/scripts/snowpark-session +0 -0
- {snowpark_connect-0.23.0.data → snowpark_connect-0.25.0.data}/scripts/snowpark-submit +0 -0
- {snowpark_connect-0.23.0.dist-info → snowpark_connect-0.25.0.dist-info}/WHEEL +0 -0
- {snowpark_connect-0.23.0.dist-info → snowpark_connect-0.25.0.dist-info}/licenses/LICENSE-binary +0 -0
- {snowpark_connect-0.23.0.dist-info → snowpark_connect-0.25.0.dist-info}/licenses/LICENSE.txt +0 -0
- {snowpark_connect-0.23.0.dist-info → snowpark_connect-0.25.0.dist-info}/licenses/NOTICE-binary +0 -0
- {snowpark_connect-0.23.0.dist-info → snowpark_connect-0.25.0.dist-info}/top_level.txt +0 -0
|
@@ -1,528 +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
|
-
import numpy as np
|
|
18
|
-
import pandas as pd
|
|
19
|
-
import unittest
|
|
20
|
-
|
|
21
|
-
from pyspark.ml.functions import predict_batch_udf
|
|
22
|
-
from pyspark.sql.functions import array, struct, col
|
|
23
|
-
from pyspark.sql.types import ArrayType, DoubleType, IntegerType, StructType, StructField, FloatType
|
|
24
|
-
from pyspark.testing.mlutils import SparkSessionTestCase
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
class PredictBatchUDFTests(SparkSessionTestCase):
|
|
28
|
-
def setUp(self):
|
|
29
|
-
super(PredictBatchUDFTests, self).setUp()
|
|
30
|
-
self.data = np.arange(0, 1000, dtype=np.float64).reshape(-1, 4)
|
|
31
|
-
|
|
32
|
-
# 4 scalar columns
|
|
33
|
-
self.pdf = pd.DataFrame(self.data, columns=["a", "b", "c", "d"])
|
|
34
|
-
self.df = self.spark.createDataFrame(self.pdf)
|
|
35
|
-
|
|
36
|
-
# 1 tensor column of 4 doubles
|
|
37
|
-
self.pdf_tensor = pd.DataFrame()
|
|
38
|
-
self.pdf_tensor["t1"] = self.pdf.values.tolist()
|
|
39
|
-
self.df_tensor1 = self.spark.createDataFrame(self.pdf_tensor)
|
|
40
|
-
|
|
41
|
-
# 2 tensor columns of 4 doubles and 3 doubles
|
|
42
|
-
self.pdf_tensor["t2"] = self.pdf.drop(columns="d").values.tolist()
|
|
43
|
-
self.df_tensor2 = self.spark.createDataFrame(self.pdf_tensor)
|
|
44
|
-
|
|
45
|
-
# 4 scalar columns with 1 tensor column
|
|
46
|
-
self.pdf_scalar_tensor = self.pdf
|
|
47
|
-
self.pdf_scalar_tensor["t1"] = self.pdf.values.tolist()
|
|
48
|
-
self.df_scalar_tensor = self.spark.createDataFrame(self.pdf_scalar_tensor)
|
|
49
|
-
|
|
50
|
-
def test_identity_single(self):
|
|
51
|
-
def make_predict_fn():
|
|
52
|
-
def predict(inputs):
|
|
53
|
-
return inputs
|
|
54
|
-
|
|
55
|
-
return predict
|
|
56
|
-
|
|
57
|
-
identity = predict_batch_udf(make_predict_fn, return_type=DoubleType(), batch_size=5)
|
|
58
|
-
|
|
59
|
-
# single column input => single column output (struct)
|
|
60
|
-
preds = self.df.withColumn("preds", identity(struct("a"))).toPandas()
|
|
61
|
-
self.assertTrue(preds["a"].equals(preds["preds"]))
|
|
62
|
-
|
|
63
|
-
# single column input => single column output (col)
|
|
64
|
-
preds = self.df.withColumn("preds", identity(col("a"))).toPandas()
|
|
65
|
-
self.assertTrue(preds["a"].equals(preds["preds"]))
|
|
66
|
-
|
|
67
|
-
# single column input => single column output (str)
|
|
68
|
-
preds = self.df.withColumn("preds", identity("a")).toPandas()
|
|
69
|
-
self.assertTrue(preds["a"].equals(preds["preds"]))
|
|
70
|
-
|
|
71
|
-
# multiple column input, single input => ERROR
|
|
72
|
-
with self.assertRaisesRegex(Exception, "Multiple input columns found, but model expected"):
|
|
73
|
-
preds = self.df.withColumn("preds", identity("a", "b")).toPandas()
|
|
74
|
-
|
|
75
|
-
# batch_size 1
|
|
76
|
-
identity = predict_batch_udf(make_predict_fn, return_type=DoubleType(), batch_size=1)
|
|
77
|
-
preds = self.df.withColumn("preds", identity("a")).toPandas()
|
|
78
|
-
self.assertTrue(preds["a"].equals(preds["preds"]))
|
|
79
|
-
|
|
80
|
-
def test_identity_multi(self):
|
|
81
|
-
# single input model
|
|
82
|
-
def make_predict_fn():
|
|
83
|
-
def predict(inputs):
|
|
84
|
-
return {"a1": inputs[:, 0], "b1": inputs[:, 1]}
|
|
85
|
-
|
|
86
|
-
return predict
|
|
87
|
-
|
|
88
|
-
identity = predict_batch_udf(
|
|
89
|
-
make_predict_fn,
|
|
90
|
-
return_type=StructType(
|
|
91
|
-
[StructField("a1", DoubleType(), True), StructField("b1", DoubleType(), True)]
|
|
92
|
-
),
|
|
93
|
-
batch_size=5,
|
|
94
|
-
)
|
|
95
|
-
|
|
96
|
-
# multiple columns using struct, single input => multiple column output
|
|
97
|
-
preds = (
|
|
98
|
-
self.df.withColumn("preds", identity(struct("a", "b")))
|
|
99
|
-
.select("a", "b", "preds.*")
|
|
100
|
-
.toPandas()
|
|
101
|
-
)
|
|
102
|
-
self.assertTrue(preds["a"].equals(preds["a1"]))
|
|
103
|
-
self.assertTrue(preds["b"].equals(preds["b1"]))
|
|
104
|
-
|
|
105
|
-
# multiple columns, single input => ERROR
|
|
106
|
-
with self.assertRaisesRegex(Exception, "Multiple input columns found, but model expected"):
|
|
107
|
-
preds = (
|
|
108
|
-
self.df.withColumn("preds", identity("a", "b"))
|
|
109
|
-
.select("a", "b", "preds.*")
|
|
110
|
-
.toPandas()
|
|
111
|
-
)
|
|
112
|
-
|
|
113
|
-
# multiple input model
|
|
114
|
-
def predict_batch2_fn():
|
|
115
|
-
def predict(in1, in2):
|
|
116
|
-
return {"a1": in1, "b1": in2}
|
|
117
|
-
|
|
118
|
-
return predict
|
|
119
|
-
|
|
120
|
-
identity2 = predict_batch_udf(
|
|
121
|
-
predict_batch2_fn,
|
|
122
|
-
return_type=StructType(
|
|
123
|
-
[StructField("a1", DoubleType(), True), StructField("b1", DoubleType(), True)]
|
|
124
|
-
),
|
|
125
|
-
batch_size=5,
|
|
126
|
-
)
|
|
127
|
-
|
|
128
|
-
# multiple columns using struct, multiple inputs => multiple column output
|
|
129
|
-
preds = (
|
|
130
|
-
self.df.withColumn("preds", identity2(struct("a", "b")))
|
|
131
|
-
.select("a", "b", "preds.*")
|
|
132
|
-
.toPandas()
|
|
133
|
-
)
|
|
134
|
-
self.assertTrue(preds["a"].equals(preds["a1"]))
|
|
135
|
-
self.assertTrue(preds["b"].equals(preds["b1"]))
|
|
136
|
-
|
|
137
|
-
# multiple columns, multiple inputs => multiple column output
|
|
138
|
-
preds = (
|
|
139
|
-
self.df.withColumn("preds", identity2(col("a"), col("b")))
|
|
140
|
-
.select("a", "b", "preds.*")
|
|
141
|
-
.toPandas()
|
|
142
|
-
)
|
|
143
|
-
self.assertTrue(preds["a"].equals(preds["a1"]))
|
|
144
|
-
self.assertTrue(preds["b"].equals(preds["b1"]))
|
|
145
|
-
|
|
146
|
-
# multiple column input => multiple column output (str)
|
|
147
|
-
preds = (
|
|
148
|
-
self.df.withColumn("preds", identity2("a", "b")).select("a", "b", "preds.*").toPandas()
|
|
149
|
-
)
|
|
150
|
-
self.assertTrue(preds["a"].equals(preds["a1"]))
|
|
151
|
-
self.assertTrue(preds["b"].equals(preds["b1"]))
|
|
152
|
-
|
|
153
|
-
def test_batching(self):
|
|
154
|
-
batch_size = 10
|
|
155
|
-
|
|
156
|
-
def make_predict_fn():
|
|
157
|
-
def predict(inputs):
|
|
158
|
-
batch_size = len(inputs)
|
|
159
|
-
# just return the batch size as the "prediction"
|
|
160
|
-
outputs = [batch_size for i in inputs]
|
|
161
|
-
return np.array(outputs)
|
|
162
|
-
|
|
163
|
-
return predict
|
|
164
|
-
|
|
165
|
-
identity = predict_batch_udf(
|
|
166
|
-
make_predict_fn, return_type=IntegerType(), batch_size=batch_size
|
|
167
|
-
)
|
|
168
|
-
|
|
169
|
-
# struct
|
|
170
|
-
preds = self.df.withColumn("preds", identity(struct("a"))).toPandas()
|
|
171
|
-
batch_sizes = preds["preds"].to_numpy()
|
|
172
|
-
self.assertTrue(all(batch_sizes <= batch_size))
|
|
173
|
-
|
|
174
|
-
# col
|
|
175
|
-
preds = self.df.withColumn("preds", identity(col("a"))).toPandas()
|
|
176
|
-
batch_sizes = preds["preds"].to_numpy()
|
|
177
|
-
self.assertTrue(all(batch_sizes <= batch_size))
|
|
178
|
-
|
|
179
|
-
# struct
|
|
180
|
-
preds = self.df.withColumn("preds", identity("a")).toPandas()
|
|
181
|
-
batch_sizes = preds["preds"].to_numpy()
|
|
182
|
-
self.assertTrue(all(batch_sizes <= batch_size))
|
|
183
|
-
|
|
184
|
-
def test_caching(self):
|
|
185
|
-
def make_predict_fn():
|
|
186
|
-
# emulate loading a model, this should only be invoked once (per worker process)
|
|
187
|
-
fake_output = np.random.random()
|
|
188
|
-
|
|
189
|
-
def predict(inputs):
|
|
190
|
-
return np.array([fake_output for i in inputs])
|
|
191
|
-
|
|
192
|
-
return predict
|
|
193
|
-
|
|
194
|
-
identity = predict_batch_udf(make_predict_fn, return_type=DoubleType(), batch_size=5)
|
|
195
|
-
|
|
196
|
-
# results should be the same
|
|
197
|
-
df1 = self.df.withColumn("preds", identity(struct("a"))).toPandas()
|
|
198
|
-
df2 = self.df.withColumn("preds", identity(struct("a"))).toPandas()
|
|
199
|
-
self.assertTrue(df1.equals(df2))
|
|
200
|
-
|
|
201
|
-
identity = predict_batch_udf(make_predict_fn, return_type=DoubleType(), batch_size=5)
|
|
202
|
-
|
|
203
|
-
# cache should now be invalidated and results should be different
|
|
204
|
-
df3 = self.df.withColumn("preds", identity(struct("a"))).toPandas()
|
|
205
|
-
self.assertFalse(df1.equals(df3))
|
|
206
|
-
|
|
207
|
-
def test_transform_scalar(self):
|
|
208
|
-
columns = self.df.columns
|
|
209
|
-
|
|
210
|
-
# multiple scalar columns, single input, no input_tensor_shapes => single numpy array
|
|
211
|
-
def array_sum_fn():
|
|
212
|
-
def predict(inputs):
|
|
213
|
-
return np.sum(inputs, axis=1)
|
|
214
|
-
|
|
215
|
-
return predict
|
|
216
|
-
|
|
217
|
-
sum_cols = predict_batch_udf(array_sum_fn, return_type=DoubleType(), batch_size=5)
|
|
218
|
-
preds = self.df.withColumn("preds", sum_cols(struct(*columns))).toPandas()
|
|
219
|
-
self.assertTrue(np.array_equal(np.sum(self.data, axis=1), preds["preds"].to_numpy()))
|
|
220
|
-
|
|
221
|
-
with self.assertRaisesRegex(Exception, "Multiple input columns found, but model expected"):
|
|
222
|
-
preds = self.df.withColumn("preds", sum_cols(*[col(c) for c in columns])).toPandas()
|
|
223
|
-
|
|
224
|
-
with self.assertRaisesRegex(Exception, "Multiple input columns found, but model expected"):
|
|
225
|
-
preds = self.df.withColumn("preds", sum_cols(*columns)).toPandas()
|
|
226
|
-
|
|
227
|
-
# multiple scalar columns, multiple inputs, no input_tensor_shapes => list of numpy arrays
|
|
228
|
-
def list_sum_fn():
|
|
229
|
-
def predict(a, b, c, d):
|
|
230
|
-
result = sum([a, b, c, d])
|
|
231
|
-
return result
|
|
232
|
-
|
|
233
|
-
return predict
|
|
234
|
-
|
|
235
|
-
sum_cols = predict_batch_udf(list_sum_fn, return_type=DoubleType(), batch_size=5)
|
|
236
|
-
preds = self.df.withColumn("preds", sum_cols(*columns)).toPandas()
|
|
237
|
-
self.assertTrue(np.array_equal(np.sum(self.data, axis=1), preds["preds"].to_numpy()))
|
|
238
|
-
|
|
239
|
-
# multiple scalar columns, mismatched inputs, no input_tensor_shapes => ERROR
|
|
240
|
-
def list_sum_fn():
|
|
241
|
-
def predict(a, b, c):
|
|
242
|
-
result = sum([a, b, c])
|
|
243
|
-
return result
|
|
244
|
-
|
|
245
|
-
return predict
|
|
246
|
-
|
|
247
|
-
sum_cols = predict_batch_udf(list_sum_fn, return_type=DoubleType(), batch_size=5)
|
|
248
|
-
with self.assertRaisesRegex(Exception, "Model expected 3 inputs, but received 4 columns"):
|
|
249
|
-
preds = self.df.withColumn("preds", sum_cols(*columns)).toPandas()
|
|
250
|
-
|
|
251
|
-
# muliple scalar columns with one tensor_input_shape => single numpy array
|
|
252
|
-
sum_cols = predict_batch_udf(
|
|
253
|
-
array_sum_fn, return_type=DoubleType(), batch_size=5, input_tensor_shapes=[[4]]
|
|
254
|
-
)
|
|
255
|
-
preds = self.df.withColumn("preds", sum_cols(struct(*columns))).toPandas()
|
|
256
|
-
self.assertTrue(np.array_equal(np.sum(self.data, axis=1), preds["preds"].to_numpy()))
|
|
257
|
-
|
|
258
|
-
# muliple scalar columns with wrong tensor_input_shape => ERROR
|
|
259
|
-
sum_cols = predict_batch_udf(
|
|
260
|
-
array_sum_fn, return_type=DoubleType(), batch_size=5, input_tensor_shapes=[[3]]
|
|
261
|
-
)
|
|
262
|
-
with self.assertRaisesRegex(Exception, "Input data does not match expected shape."):
|
|
263
|
-
self.df.withColumn("preds", sum_cols(struct(*columns))).toPandas()
|
|
264
|
-
|
|
265
|
-
# scalar columns with multiple tensor_input_shapes => ERROR
|
|
266
|
-
sum_cols = predict_batch_udf(
|
|
267
|
-
array_sum_fn,
|
|
268
|
-
return_type=DoubleType(),
|
|
269
|
-
batch_size=5,
|
|
270
|
-
input_tensor_shapes=[[4], [4]],
|
|
271
|
-
)
|
|
272
|
-
with self.assertRaisesRegex(Exception, "Multiple input_tensor_shapes found"):
|
|
273
|
-
self.df.withColumn("preds", sum_cols(struct(*columns))).toPandas()
|
|
274
|
-
|
|
275
|
-
def test_transform_single_tensor(self):
|
|
276
|
-
columns1 = self.df_tensor1.columns
|
|
277
|
-
|
|
278
|
-
def array_sum_fn():
|
|
279
|
-
def predict(inputs):
|
|
280
|
-
return np.sum(inputs, axis=1)
|
|
281
|
-
|
|
282
|
-
return predict
|
|
283
|
-
|
|
284
|
-
# tensor column with no input_tensor_shapes => ERROR
|
|
285
|
-
sum_cols = predict_batch_udf(array_sum_fn, return_type=DoubleType(), batch_size=5)
|
|
286
|
-
with self.assertRaisesRegex(Exception, "Tensor columns require input_tensor_shapes"):
|
|
287
|
-
preds = self.df_tensor1.withColumn("preds", sum_cols(struct(*columns1))).toPandas()
|
|
288
|
-
|
|
289
|
-
# tensor column with tensor_input_shapes => single numpy array
|
|
290
|
-
sum_cols = predict_batch_udf(
|
|
291
|
-
array_sum_fn, return_type=DoubleType(), batch_size=5, input_tensor_shapes=[[4]]
|
|
292
|
-
)
|
|
293
|
-
preds = self.df_tensor1.withColumn("preds", sum_cols(struct(*columns1))).toPandas()
|
|
294
|
-
self.assertTrue(np.array_equal(np.sum(self.data, axis=1), preds["preds"].to_numpy()))
|
|
295
|
-
|
|
296
|
-
# tensor column with multiple tensor_input_shapes => ERROR
|
|
297
|
-
sum_cols = predict_batch_udf(
|
|
298
|
-
array_sum_fn,
|
|
299
|
-
return_type=DoubleType(),
|
|
300
|
-
batch_size=5,
|
|
301
|
-
input_tensor_shapes=[[4], [3]],
|
|
302
|
-
)
|
|
303
|
-
with self.assertRaisesRegex(Exception, "Multiple input_tensor_shapes found"):
|
|
304
|
-
preds = self.df_tensor1.withColumn("preds", sum_cols(struct(*columns1))).toPandas()
|
|
305
|
-
|
|
306
|
-
def test_transform_multi_tensor(self):
|
|
307
|
-
def multi_sum_fn():
|
|
308
|
-
def predict(t1, t2):
|
|
309
|
-
result = np.sum(t1, axis=1) + np.sum(t2, axis=1)
|
|
310
|
-
return result
|
|
311
|
-
|
|
312
|
-
return predict
|
|
313
|
-
|
|
314
|
-
# multiple tensor columns with tensor_input_shapes => list of numpy arrays
|
|
315
|
-
sum_cols = predict_batch_udf(
|
|
316
|
-
multi_sum_fn,
|
|
317
|
-
return_type=DoubleType(),
|
|
318
|
-
batch_size=5,
|
|
319
|
-
input_tensor_shapes=[[4], [3]],
|
|
320
|
-
)
|
|
321
|
-
preds = self.df_tensor2.withColumn("preds", sum_cols("t1", "t2")).toPandas()
|
|
322
|
-
self.assertTrue(
|
|
323
|
-
np.array_equal(
|
|
324
|
-
np.sum(self.data, axis=1) + np.sum(self.data[:, 0:3], axis=1),
|
|
325
|
-
preds["preds"].to_numpy(),
|
|
326
|
-
)
|
|
327
|
-
)
|
|
328
|
-
|
|
329
|
-
def test_mixed_input_shapes(self):
|
|
330
|
-
def mixed_sum_fn():
|
|
331
|
-
# 4 scalars + 1 tensor
|
|
332
|
-
def predict(a, b, c, d, t1):
|
|
333
|
-
result = a + b + c + d + np.sum(t1, axis=1)
|
|
334
|
-
return result
|
|
335
|
-
|
|
336
|
-
return predict
|
|
337
|
-
|
|
338
|
-
# dense input_tensor_shapes
|
|
339
|
-
sum_cols = predict_batch_udf(
|
|
340
|
-
mixed_sum_fn,
|
|
341
|
-
return_type=DoubleType(),
|
|
342
|
-
batch_size=5,
|
|
343
|
-
input_tensor_shapes=[None, None, None, None, [4]],
|
|
344
|
-
)
|
|
345
|
-
|
|
346
|
-
preds = self.df_scalar_tensor.withColumn(
|
|
347
|
-
"preds", sum_cols("a", "b", "c", "d", "t1")
|
|
348
|
-
).toPandas()
|
|
349
|
-
|
|
350
|
-
self.assertTrue(
|
|
351
|
-
np.array_equal(
|
|
352
|
-
np.sum(self.data, axis=1) * 2,
|
|
353
|
-
preds["preds"].to_numpy(),
|
|
354
|
-
)
|
|
355
|
-
)
|
|
356
|
-
|
|
357
|
-
# sparse input_tensor_shapes
|
|
358
|
-
sum_cols = predict_batch_udf(
|
|
359
|
-
mixed_sum_fn,
|
|
360
|
-
return_type=DoubleType(),
|
|
361
|
-
batch_size=5,
|
|
362
|
-
input_tensor_shapes={4: [4]},
|
|
363
|
-
)
|
|
364
|
-
|
|
365
|
-
preds = self.df_scalar_tensor.withColumn(
|
|
366
|
-
"preds", sum_cols("a", "b", "c", "d", "t1")
|
|
367
|
-
).toPandas()
|
|
368
|
-
|
|
369
|
-
self.assertTrue(
|
|
370
|
-
np.array_equal(
|
|
371
|
-
np.sum(self.data, axis=1) * 2,
|
|
372
|
-
preds["preds"].to_numpy(),
|
|
373
|
-
)
|
|
374
|
-
)
|
|
375
|
-
|
|
376
|
-
def test_return_multiple(self):
|
|
377
|
-
# columnar form (dictionary of numpy arrays)
|
|
378
|
-
def multiples_column_fn():
|
|
379
|
-
def predict(inputs):
|
|
380
|
-
return {"x2": inputs * 2, "x3": inputs * 3}
|
|
381
|
-
|
|
382
|
-
return predict
|
|
383
|
-
|
|
384
|
-
multiples_col = predict_batch_udf(
|
|
385
|
-
multiples_column_fn,
|
|
386
|
-
return_type=StructType(
|
|
387
|
-
[StructField("x2", DoubleType(), True), StructField("x3", DoubleType(), True)]
|
|
388
|
-
),
|
|
389
|
-
batch_size=5,
|
|
390
|
-
)
|
|
391
|
-
preds = self.df.withColumn("preds", multiples_col("a")).select("a", "preds.*").toPandas()
|
|
392
|
-
|
|
393
|
-
self.assertTrue(np.array_equal(self.data[:, 0] * 2, preds["x2"].to_numpy()))
|
|
394
|
-
self.assertTrue(np.array_equal(self.data[:, 0] * 3, preds["x3"].to_numpy()))
|
|
395
|
-
|
|
396
|
-
# row form: list of dictionaries
|
|
397
|
-
def multiples_row_fn():
|
|
398
|
-
def predict(inputs):
|
|
399
|
-
return [{"x2": x * 2, "x3": x * 3} for x in inputs]
|
|
400
|
-
|
|
401
|
-
return predict
|
|
402
|
-
|
|
403
|
-
multiples_row = predict_batch_udf(
|
|
404
|
-
multiples_row_fn,
|
|
405
|
-
return_type=StructType(
|
|
406
|
-
[StructField("x2", DoubleType(), True), StructField("x3", DoubleType(), True)]
|
|
407
|
-
),
|
|
408
|
-
batch_size=5,
|
|
409
|
-
)
|
|
410
|
-
preds = self.df.withColumn("preds", multiples_row("a")).select("a", "preds.*").toPandas()
|
|
411
|
-
|
|
412
|
-
self.assertTrue(np.array_equal(self.data[:, 0] * 2, preds["x2"].to_numpy()))
|
|
413
|
-
self.assertTrue(np.array_equal(self.data[:, 0] * 3, preds["x3"].to_numpy()))
|
|
414
|
-
|
|
415
|
-
def test_return_struct_with_array_field(self):
|
|
416
|
-
# column form
|
|
417
|
-
def multiples_with_array_fn():
|
|
418
|
-
def predict(x, y):
|
|
419
|
-
return {"x2": x * 2, "y3": y * 3}
|
|
420
|
-
|
|
421
|
-
return predict
|
|
422
|
-
|
|
423
|
-
multiples_w_array = predict_batch_udf(
|
|
424
|
-
multiples_with_array_fn,
|
|
425
|
-
return_type=StructType(
|
|
426
|
-
[
|
|
427
|
-
StructField("x2", DoubleType(), True),
|
|
428
|
-
StructField("y3", ArrayType(DoubleType()), True),
|
|
429
|
-
]
|
|
430
|
-
),
|
|
431
|
-
input_tensor_shapes=[[], [3]],
|
|
432
|
-
batch_size=5,
|
|
433
|
-
)
|
|
434
|
-
preds = (
|
|
435
|
-
self.df.withColumn("preds", multiples_w_array("a", array(["b", "c", "d"])))
|
|
436
|
-
.select("a", "preds.*")
|
|
437
|
-
.toPandas()
|
|
438
|
-
)
|
|
439
|
-
|
|
440
|
-
self.assertTrue(np.array_equal(self.data[:, 0] * 2, np.array(preds["x2"])))
|
|
441
|
-
self.assertTrue(np.array_equal(self.data[:, 1:4] * 3, np.vstack(preds["y3"])))
|
|
442
|
-
|
|
443
|
-
# row form: list of dictionaries
|
|
444
|
-
def multiples_row_array_fn():
|
|
445
|
-
def predict(x, y):
|
|
446
|
-
return [{"x2": x * 2, "y3": y * 3} for x, y in zip(x, y)]
|
|
447
|
-
|
|
448
|
-
return predict
|
|
449
|
-
|
|
450
|
-
multiples_row_array = predict_batch_udf(
|
|
451
|
-
multiples_row_array_fn,
|
|
452
|
-
return_type=StructType(
|
|
453
|
-
[
|
|
454
|
-
StructField("x2", DoubleType(), True),
|
|
455
|
-
StructField("y3", ArrayType(DoubleType()), True),
|
|
456
|
-
]
|
|
457
|
-
),
|
|
458
|
-
input_tensor_shapes=[[], [3]],
|
|
459
|
-
batch_size=5,
|
|
460
|
-
)
|
|
461
|
-
|
|
462
|
-
preds = (
|
|
463
|
-
self.df.withColumn("preds", multiples_row_array("a", array(["b", "c", "d"])))
|
|
464
|
-
.select("a", "preds.*")
|
|
465
|
-
.toPandas()
|
|
466
|
-
)
|
|
467
|
-
|
|
468
|
-
self.assertTrue(np.array_equal(self.data[:, 0] * 2, np.array(preds["x2"])))
|
|
469
|
-
self.assertTrue(np.array_equal(self.data[:, 1:4] * 3, np.vstack(preds["y3"])))
|
|
470
|
-
|
|
471
|
-
# row form: list of dictionaries, malformed array
|
|
472
|
-
def multiples_row_array_fn():
|
|
473
|
-
def predict(x, y):
|
|
474
|
-
return [{"x2": x * 2, "y3": np.reshape(y, (-1, 1)) * 3} for x, y in zip(x, y)]
|
|
475
|
-
|
|
476
|
-
return predict
|
|
477
|
-
|
|
478
|
-
multiples_row_array = predict_batch_udf(
|
|
479
|
-
multiples_row_array_fn,
|
|
480
|
-
return_type=StructType(
|
|
481
|
-
[
|
|
482
|
-
StructField("x2", DoubleType(), True),
|
|
483
|
-
StructField("y3", ArrayType(DoubleType()), True),
|
|
484
|
-
]
|
|
485
|
-
),
|
|
486
|
-
input_tensor_shapes=[[], [3]],
|
|
487
|
-
batch_size=5,
|
|
488
|
-
)
|
|
489
|
-
with self.assertRaisesRegex(Exception, "must be one-dimensional"):
|
|
490
|
-
preds = (
|
|
491
|
-
self.df.withColumn("preds", multiples_row_array("a", array(["b", "c", "d"])))
|
|
492
|
-
.select("a", "preds.*")
|
|
493
|
-
.toPandas()
|
|
494
|
-
)
|
|
495
|
-
|
|
496
|
-
def test_single_value_in_batch(self):
|
|
497
|
-
# SPARK-42250: batches consisting of single float value should work
|
|
498
|
-
df = self.spark.createDataFrame(
|
|
499
|
-
[[[0.0, 1.0, 2.0, 3.0], [0.0, 1.0, 2.0]]], schema=["t1", "t2"]
|
|
500
|
-
)
|
|
501
|
-
|
|
502
|
-
def make_multi_sum_fn():
|
|
503
|
-
def predict(x1: np.ndarray, x2: np.ndarray) -> np.ndarray:
|
|
504
|
-
return np.sum(x1, axis=1) + np.sum(x2, axis=1)
|
|
505
|
-
|
|
506
|
-
return predict
|
|
507
|
-
|
|
508
|
-
multi_sum_udf = predict_batch_udf(
|
|
509
|
-
make_multi_sum_fn,
|
|
510
|
-
return_type=FloatType(),
|
|
511
|
-
batch_size=1,
|
|
512
|
-
input_tensor_shapes=[[4], [3]],
|
|
513
|
-
)
|
|
514
|
-
|
|
515
|
-
[value] = df.select(multi_sum_udf("t1", "t2")).first()
|
|
516
|
-
self.assertEqual(value, 9.0)
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
if __name__ == "__main__":
|
|
520
|
-
from pyspark.ml.tests.test_functions import * # noqa: F401
|
|
521
|
-
|
|
522
|
-
try:
|
|
523
|
-
import xmlrunner # type: ignore[import]
|
|
524
|
-
|
|
525
|
-
testRunner = xmlrunner.XMLTestRunner(output="target/test-reports", verbosity=2)
|
|
526
|
-
except ImportError:
|
|
527
|
-
testRunner = None
|
|
528
|
-
unittest.main(testRunner=testRunner, verbosity=2)
|
|
@@ -1,82 +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
|
-
import unittest
|
|
18
|
-
|
|
19
|
-
from pyspark.ml.image import ImageSchema
|
|
20
|
-
from pyspark.testing.mlutils import SparkSessionTestCase
|
|
21
|
-
from pyspark.sql import Row
|
|
22
|
-
from pyspark.testing.utils import QuietTest
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
class ImageFileFormatTest(SparkSessionTestCase):
|
|
26
|
-
def test_read_images(self):
|
|
27
|
-
data_path = "data/mllib/images/origin/kittens"
|
|
28
|
-
df = (
|
|
29
|
-
self.spark.read.format("image")
|
|
30
|
-
.option("dropInvalid", True)
|
|
31
|
-
.option("recursiveFileLookup", True)
|
|
32
|
-
.load(data_path)
|
|
33
|
-
)
|
|
34
|
-
self.assertEqual(df.count(), 4)
|
|
35
|
-
first_row = df.take(1)[0][0]
|
|
36
|
-
# compare `schema.simpleString()` instead of directly compare schema,
|
|
37
|
-
# because the df loaded from datasource may change schema column nullability.
|
|
38
|
-
self.assertEqual(df.schema.simpleString(), ImageSchema.imageSchema.simpleString())
|
|
39
|
-
self.assertEqual(
|
|
40
|
-
df.schema["image"].dataType.simpleString(), ImageSchema.columnSchema.simpleString()
|
|
41
|
-
)
|
|
42
|
-
array = ImageSchema.toNDArray(first_row)
|
|
43
|
-
self.assertEqual(len(array), first_row[1])
|
|
44
|
-
self.assertEqual(ImageSchema.toImage(array, origin=first_row[0]), first_row)
|
|
45
|
-
expected = {"CV_8UC3": 16, "Undefined": -1, "CV_8U": 0, "CV_8UC1": 0, "CV_8UC4": 24}
|
|
46
|
-
self.assertEqual(ImageSchema.ocvTypes, expected)
|
|
47
|
-
expected = ["origin", "height", "width", "nChannels", "mode", "data"]
|
|
48
|
-
self.assertEqual(ImageSchema.imageFields, expected)
|
|
49
|
-
self.assertEqual(ImageSchema.undefinedImageType, "Undefined")
|
|
50
|
-
|
|
51
|
-
with QuietTest(self.sc):
|
|
52
|
-
self.assertRaisesRegex(
|
|
53
|
-
TypeError,
|
|
54
|
-
"image argument should be pyspark.sql.types.Row; however",
|
|
55
|
-
lambda: ImageSchema.toNDArray("a"),
|
|
56
|
-
)
|
|
57
|
-
|
|
58
|
-
with QuietTest(self.sc):
|
|
59
|
-
self.assertRaisesRegex(
|
|
60
|
-
ValueError,
|
|
61
|
-
"image argument should have attributes specified in",
|
|
62
|
-
lambda: ImageSchema.toNDArray(Row(a=1)),
|
|
63
|
-
)
|
|
64
|
-
|
|
65
|
-
with QuietTest(self.sc):
|
|
66
|
-
self.assertRaisesRegex(
|
|
67
|
-
TypeError,
|
|
68
|
-
"array argument should be numpy.ndarray; however, it got",
|
|
69
|
-
lambda: ImageSchema.toImage("a"),
|
|
70
|
-
)
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
if __name__ == "__main__":
|
|
74
|
-
from pyspark.ml.tests.test_image import * # noqa: F401
|
|
75
|
-
|
|
76
|
-
try:
|
|
77
|
-
import xmlrunner
|
|
78
|
-
|
|
79
|
-
testRunner = xmlrunner.XMLTestRunner(output="target/test-reports", verbosity=2)
|
|
80
|
-
except ImportError:
|
|
81
|
-
testRunner = None
|
|
82
|
-
unittest.main(testRunner=testRunner, verbosity=2)
|