snowpark-connect 0.24.0__py3-none-any.whl → 0.25.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of snowpark-connect might be problematic. Click here for more details.
- 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/literal.py +13 -2
- snowflake/snowpark_connect/expression/map_cast.py +5 -8
- 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 +825 -353
- 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 +17 -4
- snowflake/snowpark_connect/relation/map_extension.py +52 -11
- snowflake/snowpark_connect/relation/map_join.py +258 -62
- 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/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.24.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/spark/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/accessors.py +0 -1281
- snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/functions.py +0 -203
- snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/utils.py +0 -202
- 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.24.0.dist-info/RECORD +0 -898
- {snowpark_connect-0.24.0.data → snowpark_connect-0.25.0.data}/scripts/snowpark-connect +0 -0
- {snowpark_connect-0.24.0.data → snowpark_connect-0.25.0.data}/scripts/snowpark-session +0 -0
- {snowpark_connect-0.24.0.data → snowpark_connect-0.25.0.data}/scripts/snowpark-submit +0 -0
- {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/WHEEL +0 -0
- {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/licenses/LICENSE-binary +0 -0
- {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/licenses/LICENSE.txt +0 -0
- {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/licenses/NOTICE-binary +0 -0
- {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/top_level.txt +0 -0
|
@@ -1,53 +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
|
-
from pyspark.sql import Row
|
|
19
|
-
from pyspark.testing.sqlutils import ReusedSQLTestCase
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
class GroupTestsMixin:
|
|
23
|
-
def test_aggregator(self):
|
|
24
|
-
df = self.df
|
|
25
|
-
g = df.groupBy()
|
|
26
|
-
self.assertEqual([99, 100], sorted(g.agg({"key": "max", "value": "count"}).collect()[0]))
|
|
27
|
-
self.assertEqual([Row(**{"AVG(key#0)": 49.5})], g.mean().collect())
|
|
28
|
-
|
|
29
|
-
from pyspark.sql import functions
|
|
30
|
-
|
|
31
|
-
self.assertEqual(
|
|
32
|
-
(0, "99"), tuple(g.agg(functions.first(df.key), functions.last(df.value)).first())
|
|
33
|
-
)
|
|
34
|
-
self.assertTrue(95 < g.agg(functions.approx_count_distinct(df.key)).first()[0])
|
|
35
|
-
# test deprecated countDistinct
|
|
36
|
-
self.assertEqual(100, g.agg(functions.countDistinct(df.value)).first()[0])
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
class GroupTests(GroupTestsMixin, ReusedSQLTestCase):
|
|
40
|
-
pass
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
if __name__ == "__main__":
|
|
44
|
-
import unittest
|
|
45
|
-
from pyspark.sql.tests.test_group import * # noqa: F401
|
|
46
|
-
|
|
47
|
-
try:
|
|
48
|
-
import xmlrunner
|
|
49
|
-
|
|
50
|
-
testRunner = xmlrunner.XMLTestRunner(output="target/test-reports", verbosity=2)
|
|
51
|
-
except ImportError:
|
|
52
|
-
testRunner = None
|
|
53
|
-
unittest.main(testRunner=testRunner, verbosity=2)
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
#
|
|
2
|
-
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
3
|
-
# contributor license agreements. See the NOTICE file distributed with
|
|
4
|
-
# this work for additional information regarding copyright ownership.
|
|
5
|
-
# The ASF licenses this file to You under the Apache License, Version 2.0
|
|
6
|
-
# (the "License"); you may not use this file except in compliance with
|
|
7
|
-
# the License. You may obtain a copy of the License at
|
|
8
|
-
#
|
|
9
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
#
|
|
11
|
-
# Unless required by applicable law or agreed to in writing, software
|
|
12
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
-
# See the License for the specific language governing permissions and
|
|
15
|
-
# limitations under the License.
|
|
16
|
-
#
|
|
17
|
-
|
|
18
|
-
import unittest
|
|
19
|
-
from typing import cast
|
|
20
|
-
|
|
21
|
-
from pyspark.sql.functions import pandas_udf
|
|
22
|
-
from pyspark.testing.sqlutils import (
|
|
23
|
-
ReusedSQLTestCase,
|
|
24
|
-
have_pandas,
|
|
25
|
-
have_pyarrow,
|
|
26
|
-
pandas_requirement_message,
|
|
27
|
-
pyarrow_requirement_message,
|
|
28
|
-
)
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
@unittest.skipIf(
|
|
32
|
-
not have_pandas or not have_pyarrow,
|
|
33
|
-
cast(str, pandas_requirement_message or pyarrow_requirement_message),
|
|
34
|
-
)
|
|
35
|
-
class PandasSQLMetrics(ReusedSQLTestCase):
|
|
36
|
-
def test_pandas_sql_metrics_basic(self):
|
|
37
|
-
# SPARK-34265: Instrument Python UDFs using SQL metrics
|
|
38
|
-
|
|
39
|
-
python_sql_metrics = [
|
|
40
|
-
"data sent to Python workers",
|
|
41
|
-
"data returned from Python workers",
|
|
42
|
-
"number of output rows",
|
|
43
|
-
]
|
|
44
|
-
|
|
45
|
-
@pandas_udf("long")
|
|
46
|
-
def test_pandas(col1):
|
|
47
|
-
return col1 * col1
|
|
48
|
-
|
|
49
|
-
self.spark.range(10).select(test_pandas("id")).collect()
|
|
50
|
-
|
|
51
|
-
statusStore = self.spark._jsparkSession.sharedState().statusStore()
|
|
52
|
-
lastExecId = statusStore.executionsList().last().executionId()
|
|
53
|
-
executionMetrics = statusStore.execution(lastExecId).get().metrics().mkString()
|
|
54
|
-
|
|
55
|
-
for metric in python_sql_metrics:
|
|
56
|
-
self.assertIn(metric, executionMetrics)
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
if __name__ == "__main__":
|
|
60
|
-
from pyspark.sql.tests.test_pandas_sqlmetrics import * # noqa: F401
|
|
61
|
-
|
|
62
|
-
try:
|
|
63
|
-
import xmlrunner
|
|
64
|
-
|
|
65
|
-
testRunner = xmlrunner.XMLTestRunner(output="target/test-reports", verbosity=2)
|
|
66
|
-
except ImportError:
|
|
67
|
-
testRunner = None
|
|
68
|
-
unittest.main(testRunner=testRunner, verbosity=2)
|
|
@@ -1,283 +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 os
|
|
19
|
-
import unittest
|
|
20
|
-
import shutil
|
|
21
|
-
import tempfile
|
|
22
|
-
|
|
23
|
-
from pyspark.errors import AnalysisException
|
|
24
|
-
from pyspark.sql.functions import col, lit
|
|
25
|
-
from pyspark.sql.readwriter import DataFrameWriterV2
|
|
26
|
-
from pyspark.sql.types import StructType, StructField, StringType
|
|
27
|
-
from pyspark.testing.sqlutils import ReusedSQLTestCase
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
class ReadwriterTestsMixin:
|
|
31
|
-
def test_save_and_load(self):
|
|
32
|
-
df = self.df
|
|
33
|
-
tmpPath = tempfile.mkdtemp()
|
|
34
|
-
shutil.rmtree(tmpPath)
|
|
35
|
-
try:
|
|
36
|
-
df.write.json(tmpPath)
|
|
37
|
-
actual = self.spark.read.json(tmpPath)
|
|
38
|
-
self.assertEqual(sorted(df.collect()), sorted(actual.collect()))
|
|
39
|
-
|
|
40
|
-
schema = StructType([StructField("value", StringType(), True)])
|
|
41
|
-
actual = self.spark.read.json(tmpPath, schema)
|
|
42
|
-
self.assertEqual(sorted(df.select("value").collect()), sorted(actual.collect()))
|
|
43
|
-
|
|
44
|
-
df.write.json(tmpPath, "overwrite")
|
|
45
|
-
actual = self.spark.read.json(tmpPath)
|
|
46
|
-
self.assertEqual(sorted(df.collect()), sorted(actual.collect()))
|
|
47
|
-
|
|
48
|
-
df.write.save(
|
|
49
|
-
format="json",
|
|
50
|
-
mode="overwrite",
|
|
51
|
-
path=tmpPath,
|
|
52
|
-
noUse="this options will not be used in save.",
|
|
53
|
-
)
|
|
54
|
-
actual = self.spark.read.load(
|
|
55
|
-
format="json", path=tmpPath, noUse="this options will not be used in load."
|
|
56
|
-
)
|
|
57
|
-
self.assertEqual(sorted(df.collect()), sorted(actual.collect()))
|
|
58
|
-
|
|
59
|
-
try:
|
|
60
|
-
self.spark.sql("SET spark.sql.sources.default=org.apache.spark.sql.json")
|
|
61
|
-
actual = self.spark.read.load(path=tmpPath)
|
|
62
|
-
self.assertEqual(sorted(df.collect()), sorted(actual.collect()))
|
|
63
|
-
finally:
|
|
64
|
-
self.spark.sql("RESET spark.sql.sources.default")
|
|
65
|
-
|
|
66
|
-
csvpath = os.path.join(tempfile.mkdtemp(), "data")
|
|
67
|
-
df.write.option("quote", None).format("csv").save(csvpath)
|
|
68
|
-
finally:
|
|
69
|
-
shutil.rmtree(tmpPath)
|
|
70
|
-
|
|
71
|
-
def test_save_and_load_builder(self):
|
|
72
|
-
df = self.df
|
|
73
|
-
tmpPath = tempfile.mkdtemp()
|
|
74
|
-
shutil.rmtree(tmpPath)
|
|
75
|
-
try:
|
|
76
|
-
df.write.json(tmpPath)
|
|
77
|
-
actual = self.spark.read.json(tmpPath)
|
|
78
|
-
self.assertEqual(sorted(df.collect()), sorted(actual.collect()))
|
|
79
|
-
|
|
80
|
-
schema = StructType([StructField("value", StringType(), True)])
|
|
81
|
-
actual = self.spark.read.json(tmpPath, schema)
|
|
82
|
-
self.assertEqual(sorted(df.select("value").collect()), sorted(actual.collect()))
|
|
83
|
-
|
|
84
|
-
df.write.mode("overwrite").json(tmpPath)
|
|
85
|
-
actual = self.spark.read.json(tmpPath)
|
|
86
|
-
self.assertEqual(sorted(df.collect()), sorted(actual.collect()))
|
|
87
|
-
|
|
88
|
-
df.write.mode("overwrite").options(
|
|
89
|
-
noUse="this options will not be used in save."
|
|
90
|
-
).option("noUse", "this option will not be used in save.").format("json").save(
|
|
91
|
-
path=tmpPath
|
|
92
|
-
)
|
|
93
|
-
actual = self.spark.read.format("json").load(
|
|
94
|
-
path=tmpPath, noUse="this options will not be used in load."
|
|
95
|
-
)
|
|
96
|
-
self.assertEqual(sorted(df.collect()), sorted(actual.collect()))
|
|
97
|
-
|
|
98
|
-
try:
|
|
99
|
-
self.spark.sql("SET spark.sql.sources.default=org.apache.spark.sql.json")
|
|
100
|
-
actual = self.spark.read.load(path=tmpPath)
|
|
101
|
-
self.assertEqual(sorted(df.collect()), sorted(actual.collect()))
|
|
102
|
-
finally:
|
|
103
|
-
self.spark.sql("RESET spark.sql.sources.default")
|
|
104
|
-
finally:
|
|
105
|
-
shutil.rmtree(tmpPath)
|
|
106
|
-
|
|
107
|
-
def test_bucketed_write(self):
|
|
108
|
-
data = [
|
|
109
|
-
(1, "foo", 3.0),
|
|
110
|
-
(2, "foo", 5.0),
|
|
111
|
-
(3, "bar", -1.0),
|
|
112
|
-
(4, "bar", 6.0),
|
|
113
|
-
]
|
|
114
|
-
df = self.spark.createDataFrame(data, ["x", "y", "z"])
|
|
115
|
-
|
|
116
|
-
def count_bucketed_cols(names, table="pyspark_bucket"):
|
|
117
|
-
"""Given a sequence of column names and a table name
|
|
118
|
-
query the catalog and return number o columns which are
|
|
119
|
-
used for bucketing
|
|
120
|
-
"""
|
|
121
|
-
cols = self.spark.catalog.listColumns(table)
|
|
122
|
-
num = len([c for c in cols if c.name in names and c.isBucket])
|
|
123
|
-
return num
|
|
124
|
-
|
|
125
|
-
with self.table("pyspark_bucket"):
|
|
126
|
-
# Test write with one bucketing column
|
|
127
|
-
df.write.bucketBy(3, "x").mode("overwrite").saveAsTable("pyspark_bucket")
|
|
128
|
-
self.assertEqual(count_bucketed_cols(["x"]), 1)
|
|
129
|
-
self.assertSetEqual(set(data), set(self.spark.table("pyspark_bucket").collect()))
|
|
130
|
-
|
|
131
|
-
# Test write two bucketing columns
|
|
132
|
-
df.write.bucketBy(3, "x", "y").mode("overwrite").saveAsTable("pyspark_bucket")
|
|
133
|
-
self.assertEqual(count_bucketed_cols(["x", "y"]), 2)
|
|
134
|
-
self.assertSetEqual(set(data), set(self.spark.table("pyspark_bucket").collect()))
|
|
135
|
-
|
|
136
|
-
# Test write with bucket and sort
|
|
137
|
-
df.write.bucketBy(2, "x").sortBy("z").mode("overwrite").saveAsTable("pyspark_bucket")
|
|
138
|
-
self.assertEqual(count_bucketed_cols(["x"]), 1)
|
|
139
|
-
self.assertSetEqual(set(data), set(self.spark.table("pyspark_bucket").collect()))
|
|
140
|
-
|
|
141
|
-
# Test write with a list of columns
|
|
142
|
-
df.write.bucketBy(3, ["x", "y"]).mode("overwrite").saveAsTable("pyspark_bucket")
|
|
143
|
-
self.assertEqual(count_bucketed_cols(["x", "y"]), 2)
|
|
144
|
-
self.assertSetEqual(set(data), set(self.spark.table("pyspark_bucket").collect()))
|
|
145
|
-
|
|
146
|
-
# Test write with bucket and sort with a list of columns
|
|
147
|
-
(
|
|
148
|
-
df.write.bucketBy(2, "x")
|
|
149
|
-
.sortBy(["y", "z"])
|
|
150
|
-
.mode("overwrite")
|
|
151
|
-
.saveAsTable("pyspark_bucket")
|
|
152
|
-
)
|
|
153
|
-
self.assertSetEqual(set(data), set(self.spark.table("pyspark_bucket").collect()))
|
|
154
|
-
|
|
155
|
-
# Test write with bucket and sort with multiple columns
|
|
156
|
-
(
|
|
157
|
-
df.write.bucketBy(2, "x")
|
|
158
|
-
.sortBy("y", "z")
|
|
159
|
-
.mode("overwrite")
|
|
160
|
-
.saveAsTable("pyspark_bucket")
|
|
161
|
-
)
|
|
162
|
-
self.assertSetEqual(set(data), set(self.spark.table("pyspark_bucket").collect()))
|
|
163
|
-
|
|
164
|
-
def test_insert_into(self):
|
|
165
|
-
df = self.spark.createDataFrame([("a", 1), ("b", 2)], ["C1", "C2"])
|
|
166
|
-
with self.table("test_table"):
|
|
167
|
-
df.write.saveAsTable("test_table")
|
|
168
|
-
self.assertEqual(2, self.spark.sql("select * from test_table").count())
|
|
169
|
-
|
|
170
|
-
df.write.insertInto("test_table")
|
|
171
|
-
self.assertEqual(4, self.spark.sql("select * from test_table").count())
|
|
172
|
-
|
|
173
|
-
df.write.mode("overwrite").insertInto("test_table")
|
|
174
|
-
self.assertEqual(2, self.spark.sql("select * from test_table").count())
|
|
175
|
-
|
|
176
|
-
df.write.insertInto("test_table", True)
|
|
177
|
-
self.assertEqual(2, self.spark.sql("select * from test_table").count())
|
|
178
|
-
|
|
179
|
-
df.write.insertInto("test_table", False)
|
|
180
|
-
self.assertEqual(4, self.spark.sql("select * from test_table").count())
|
|
181
|
-
|
|
182
|
-
df.write.mode("overwrite").insertInto("test_table", False)
|
|
183
|
-
self.assertEqual(6, self.spark.sql("select * from test_table").count())
|
|
184
|
-
|
|
185
|
-
def test_cached_table(self):
|
|
186
|
-
with self.table("test_cached_table_1"):
|
|
187
|
-
self.spark.range(10).withColumn(
|
|
188
|
-
"value_1",
|
|
189
|
-
lit(1),
|
|
190
|
-
).write.saveAsTable("test_cached_table_1")
|
|
191
|
-
|
|
192
|
-
with self.table("test_cached_table_2"):
|
|
193
|
-
self.spark.range(10).withColumnRenamed("id", "index").withColumn(
|
|
194
|
-
"value_2", lit(2)
|
|
195
|
-
).write.saveAsTable("test_cached_table_2")
|
|
196
|
-
|
|
197
|
-
df1 = self.spark.read.table("test_cached_table_1")
|
|
198
|
-
df2 = self.spark.read.table("test_cached_table_2")
|
|
199
|
-
df3 = self.spark.read.table("test_cached_table_1")
|
|
200
|
-
|
|
201
|
-
join1 = df1.join(df2, on=df1.id == df2.index).select(df2.index, df2.value_2)
|
|
202
|
-
join2 = df3.join(join1, how="left", on=join1.index == df3.id)
|
|
203
|
-
|
|
204
|
-
self.assertEqual(join2.columns, ["id", "value_1", "index", "value_2"])
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
class ReadwriterV2TestsMixin:
|
|
208
|
-
def test_api(self):
|
|
209
|
-
self.check_api(DataFrameWriterV2)
|
|
210
|
-
|
|
211
|
-
def check_api(self, tpe):
|
|
212
|
-
df = self.df
|
|
213
|
-
writer = df.writeTo("testcat.t")
|
|
214
|
-
self.assertIsInstance(writer, tpe)
|
|
215
|
-
self.assertIsInstance(writer.option("property", "value"), tpe)
|
|
216
|
-
self.assertIsInstance(writer.options(property="value"), tpe)
|
|
217
|
-
self.assertIsInstance(writer.using("source"), tpe)
|
|
218
|
-
self.assertIsInstance(writer.partitionedBy("id"), tpe)
|
|
219
|
-
self.assertIsInstance(writer.partitionedBy(col("id")), tpe)
|
|
220
|
-
self.assertIsInstance(writer.tableProperty("foo", "bar"), tpe)
|
|
221
|
-
|
|
222
|
-
def test_partitioning_functions(self):
|
|
223
|
-
self.check_partitioning_functions(DataFrameWriterV2)
|
|
224
|
-
|
|
225
|
-
def check_partitioning_functions(self, tpe):
|
|
226
|
-
import datetime
|
|
227
|
-
from pyspark.sql.functions import years, months, days, hours, bucket
|
|
228
|
-
|
|
229
|
-
df = self.spark.createDataFrame(
|
|
230
|
-
[(1, datetime.datetime(2000, 1, 1), "foo")], ("id", "ts", "value")
|
|
231
|
-
)
|
|
232
|
-
|
|
233
|
-
writer = df.writeTo("testcat.t")
|
|
234
|
-
|
|
235
|
-
self.assertIsInstance(writer.partitionedBy(years("ts")), tpe)
|
|
236
|
-
self.assertIsInstance(writer.partitionedBy(months("ts")), tpe)
|
|
237
|
-
self.assertIsInstance(writer.partitionedBy(days("ts")), tpe)
|
|
238
|
-
self.assertIsInstance(writer.partitionedBy(hours("ts")), tpe)
|
|
239
|
-
self.assertIsInstance(writer.partitionedBy(bucket(11, "id")), tpe)
|
|
240
|
-
self.assertIsInstance(writer.partitionedBy(bucket(11, col("id"))), tpe)
|
|
241
|
-
self.assertIsInstance(writer.partitionedBy(bucket(3, "id"), hours(col("ts"))), tpe)
|
|
242
|
-
|
|
243
|
-
def test_create(self):
|
|
244
|
-
df = self.df
|
|
245
|
-
with self.table("test_table"):
|
|
246
|
-
df.writeTo("test_table").using("parquet").create()
|
|
247
|
-
self.assertEqual(100, self.spark.sql("select * from test_table").count())
|
|
248
|
-
|
|
249
|
-
@unittest.skipIf(
|
|
250
|
-
"SPARK_SKIP_CONNECT_COMPAT_TESTS" in os.environ, "Known behavior change in 4.0"
|
|
251
|
-
)
|
|
252
|
-
def test_create_without_provider(self):
|
|
253
|
-
df = self.df
|
|
254
|
-
with self.assertRaisesRegex(
|
|
255
|
-
AnalysisException, "NOT_SUPPORTED_COMMAND_WITHOUT_HIVE_SUPPORT"
|
|
256
|
-
):
|
|
257
|
-
df.writeTo("test_table").create()
|
|
258
|
-
|
|
259
|
-
def test_table_overwrite(self):
|
|
260
|
-
df = self.df
|
|
261
|
-
with self.assertRaisesRegex(AnalysisException, "TABLE_OR_VIEW_NOT_FOUND"):
|
|
262
|
-
df.writeTo("test_table").overwrite(lit(True))
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
class ReadwriterTests(ReadwriterTestsMixin, ReusedSQLTestCase):
|
|
266
|
-
pass
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
class ReadwriterV2Tests(ReadwriterV2TestsMixin, ReusedSQLTestCase):
|
|
270
|
-
pass
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
if __name__ == "__main__":
|
|
274
|
-
import unittest
|
|
275
|
-
from pyspark.sql.tests.test_readwriter import * # noqa: F401
|
|
276
|
-
|
|
277
|
-
try:
|
|
278
|
-
import xmlrunner
|
|
279
|
-
|
|
280
|
-
testRunner = xmlrunner.XMLTestRunner(output="target/test-reports", verbosity=2)
|
|
281
|
-
except ImportError:
|
|
282
|
-
testRunner = None
|
|
283
|
-
unittest.main(testRunner=testRunner, verbosity=2)
|
|
@@ -1,155 +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 shutil
|
|
20
|
-
import tempfile
|
|
21
|
-
import time
|
|
22
|
-
|
|
23
|
-
from pyspark.sql import Row
|
|
24
|
-
from pyspark.sql.functions import lit
|
|
25
|
-
from pyspark.sql.types import StructType, StructField, DecimalType, BinaryType
|
|
26
|
-
from pyspark.testing.objects import UTCOffsetTimezone
|
|
27
|
-
from pyspark.testing.sqlutils import ReusedSQLTestCase
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
class SerdeTestsMixin:
|
|
31
|
-
def test_serialize_nested_array_and_map(self):
|
|
32
|
-
d = [Row(lst=[Row(a=1, b="s")], d={"key": Row(c=1.0, d="2")})]
|
|
33
|
-
rdd = self.sc.parallelize(d)
|
|
34
|
-
df = self.spark.createDataFrame(rdd)
|
|
35
|
-
row = df.head()
|
|
36
|
-
self.assertEqual(1, len(row.lst))
|
|
37
|
-
self.assertEqual(1, row.lst[0].a)
|
|
38
|
-
self.assertEqual("2", row.d["key"].d)
|
|
39
|
-
|
|
40
|
-
lst = df.rdd.map(lambda x: x.lst).first()
|
|
41
|
-
self.assertEqual(1, len(lst))
|
|
42
|
-
self.assertEqual("s", lst[0].b)
|
|
43
|
-
|
|
44
|
-
d = df.rdd.map(lambda x: x.d).first()
|
|
45
|
-
self.assertEqual(1, len(d))
|
|
46
|
-
self.assertEqual(1.0, d["key"].c)
|
|
47
|
-
|
|
48
|
-
row = df.rdd.map(lambda x: x.d["key"]).first()
|
|
49
|
-
self.assertEqual(1.0, row.c)
|
|
50
|
-
self.assertEqual("2", row.d)
|
|
51
|
-
|
|
52
|
-
def test_select_null_literal(self):
|
|
53
|
-
df = self.spark.sql("select null as col")
|
|
54
|
-
self.assertEqual(Row(col=None), df.first())
|
|
55
|
-
|
|
56
|
-
def test_struct_in_map(self):
|
|
57
|
-
d = [Row(m={Row(i=1): Row(s="")})]
|
|
58
|
-
df = self.spark.createDataFrame(d)
|
|
59
|
-
k, v = list(df.head().m.items())[0]
|
|
60
|
-
self.assertEqual(1, k.i)
|
|
61
|
-
self.assertEqual("", v.s)
|
|
62
|
-
|
|
63
|
-
def test_filter_with_datetime(self):
|
|
64
|
-
time = datetime.datetime(2015, 4, 17, 23, 1, 2, 3000)
|
|
65
|
-
date = time.date()
|
|
66
|
-
row = Row(date=date, time=time)
|
|
67
|
-
df = self.spark.createDataFrame([row])
|
|
68
|
-
self.assertEqual(1, df.filter(df.date == date).count())
|
|
69
|
-
self.assertEqual(1, df.filter(df.time == time).count())
|
|
70
|
-
self.assertEqual(0, df.filter(df.date > date).count())
|
|
71
|
-
self.assertEqual(0, df.filter(df.time > time).count())
|
|
72
|
-
|
|
73
|
-
def test_filter_with_datetime_timezone(self):
|
|
74
|
-
dt1 = datetime.datetime(2015, 4, 17, 23, 1, 2, 3000, tzinfo=UTCOffsetTimezone(0))
|
|
75
|
-
dt2 = datetime.datetime(2015, 4, 17, 23, 1, 2, 3000, tzinfo=UTCOffsetTimezone(1))
|
|
76
|
-
row = Row(date=dt1)
|
|
77
|
-
df = self.spark.createDataFrame([row])
|
|
78
|
-
self.assertEqual(0, df.filter(df.date == dt2).count())
|
|
79
|
-
self.assertEqual(1, df.filter(df.date > dt2).count())
|
|
80
|
-
self.assertEqual(0, df.filter(df.date < dt2).count())
|
|
81
|
-
|
|
82
|
-
def test_time_with_timezone(self):
|
|
83
|
-
day = datetime.date.today()
|
|
84
|
-
now = datetime.datetime.now()
|
|
85
|
-
ts = time.mktime(now.timetuple())
|
|
86
|
-
utc = UTCOffsetTimezone()
|
|
87
|
-
utcnow = datetime.datetime.utcfromtimestamp(ts) # without microseconds
|
|
88
|
-
# add microseconds to utcnow (keeping year,month,day,hour,minute,second)
|
|
89
|
-
utcnow = datetime.datetime(*(utcnow.timetuple()[:6] + (now.microsecond, utc)))
|
|
90
|
-
df = self.spark.createDataFrame([(day, now, utcnow)])
|
|
91
|
-
day1, now1, utcnow1 = df.first()
|
|
92
|
-
self.assertEqual(day1, day)
|
|
93
|
-
self.assertEqual(now, now1)
|
|
94
|
-
self.assertEqual(now, utcnow1)
|
|
95
|
-
|
|
96
|
-
# regression test for SPARK-19561
|
|
97
|
-
def test_datetime_at_epoch(self):
|
|
98
|
-
epoch = datetime.datetime.fromtimestamp(0)
|
|
99
|
-
df = self.spark.createDataFrame([Row(date=epoch)])
|
|
100
|
-
first = df.select("date", lit(epoch).alias("lit_date")).first()
|
|
101
|
-
self.assertEqual(first["date"], epoch)
|
|
102
|
-
self.assertEqual(first["lit_date"], epoch)
|
|
103
|
-
|
|
104
|
-
def test_decimal(self):
|
|
105
|
-
from decimal import Decimal
|
|
106
|
-
|
|
107
|
-
schema = StructType([StructField("decimal", DecimalType(10, 5))])
|
|
108
|
-
df = self.spark.createDataFrame([(Decimal("3.14159"),)], schema)
|
|
109
|
-
row = df.select(df.decimal + 1).first()
|
|
110
|
-
self.assertEqual(row[0], Decimal("4.14159"))
|
|
111
|
-
tmpPath = tempfile.mkdtemp()
|
|
112
|
-
shutil.rmtree(tmpPath)
|
|
113
|
-
df.write.parquet(tmpPath)
|
|
114
|
-
df2 = self.spark.read.parquet(tmpPath)
|
|
115
|
-
row = df2.first()
|
|
116
|
-
self.assertEqual(row[0], Decimal("3.14159"))
|
|
117
|
-
|
|
118
|
-
def test_BinaryType_serialization(self):
|
|
119
|
-
# Pyrolite version <= 4.9 could not serialize BinaryType with Python3 SPARK-17808
|
|
120
|
-
# The empty bytearray is test for SPARK-21534.
|
|
121
|
-
schema = StructType([StructField("mybytes", BinaryType())])
|
|
122
|
-
data = [
|
|
123
|
-
[bytearray(b"here is my data")],
|
|
124
|
-
[bytearray(b"and here is some more")],
|
|
125
|
-
[bytearray(b"")],
|
|
126
|
-
]
|
|
127
|
-
df = self.spark.createDataFrame(data, schema=schema)
|
|
128
|
-
df.collect()
|
|
129
|
-
|
|
130
|
-
def test_int_array_serialization(self):
|
|
131
|
-
# Note that this test seems dependent on parallelism.
|
|
132
|
-
data = self.spark.sparkContext.parallelize([[1, 2, 3, 4]] * 100, numSlices=12)
|
|
133
|
-
df = self.spark.createDataFrame(data, "array<integer>")
|
|
134
|
-
self.assertEqual(len(list(filter(lambda r: None in r.value, df.collect()))), 0)
|
|
135
|
-
|
|
136
|
-
def test_bytes_as_binary_type(self):
|
|
137
|
-
df = self.spark.createDataFrame([[b"abcd"]], "col binary")
|
|
138
|
-
self.assertEqual(df.first().col, bytearray(b"abcd"))
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
class SerdeTests(SerdeTestsMixin, ReusedSQLTestCase):
|
|
142
|
-
pass
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
if __name__ == "__main__":
|
|
146
|
-
import unittest
|
|
147
|
-
from pyspark.sql.tests.test_serde import * # noqa: F401
|
|
148
|
-
|
|
149
|
-
try:
|
|
150
|
-
import xmlrunner
|
|
151
|
-
|
|
152
|
-
testRunner = xmlrunner.XMLTestRunner(output="target/test-reports", verbosity=2)
|
|
153
|
-
except ImportError:
|
|
154
|
-
testRunner = None
|
|
155
|
-
unittest.main(testRunner=testRunner, verbosity=2)
|