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
snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_string_ops.py
DELETED
|
@@ -1,354 +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
|
-
|
|
20
|
-
import numpy as np
|
|
21
|
-
import pandas as pd
|
|
22
|
-
from pandas.api.types import CategoricalDtype
|
|
23
|
-
|
|
24
|
-
from pyspark import pandas as ps
|
|
25
|
-
from pyspark.pandas.config import option_context
|
|
26
|
-
from pyspark.pandas.tests.data_type_ops.testing_utils import OpsTestBase
|
|
27
|
-
from pyspark.pandas.typedef.typehints import extension_object_dtypes_available
|
|
28
|
-
|
|
29
|
-
if extension_object_dtypes_available:
|
|
30
|
-
from pandas import StringDtype
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
class StringOpsTestsMixin:
|
|
34
|
-
@property
|
|
35
|
-
def bool_pdf(self):
|
|
36
|
-
return pd.DataFrame({"this": ["x", "y", "z"], "that": ["z", "y", "x"]})
|
|
37
|
-
|
|
38
|
-
@property
|
|
39
|
-
def bool_psdf(self):
|
|
40
|
-
return ps.from_pandas(self.bool_pdf)
|
|
41
|
-
|
|
42
|
-
@property
|
|
43
|
-
def bool_non_numeric_pdf(self):
|
|
44
|
-
return pd.concat([self.bool_pdf, self.non_numeric_pdf], axis=1)
|
|
45
|
-
|
|
46
|
-
@property
|
|
47
|
-
def bool_non_numeric_psdf(self):
|
|
48
|
-
return ps.from_pandas(self.bool_non_numeric_pdf)
|
|
49
|
-
|
|
50
|
-
def test_add(self):
|
|
51
|
-
pdf, psdf = self.bool_non_numeric_pdf, self.bool_non_numeric_psdf
|
|
52
|
-
pser, psser = pdf["this"], psdf["this"]
|
|
53
|
-
other_pser, other_psser = pdf["that"], psdf["that"]
|
|
54
|
-
self.assert_eq(pser + "x", psser + "x")
|
|
55
|
-
self.assertRaises(TypeError, lambda: psser + 1)
|
|
56
|
-
|
|
57
|
-
self.assert_eq(pser + other_pser, psser + other_psser)
|
|
58
|
-
|
|
59
|
-
for col in self.non_numeric_df_cols:
|
|
60
|
-
if col != "string":
|
|
61
|
-
self.assertRaises(TypeError, lambda: psser + psdf[col])
|
|
62
|
-
|
|
63
|
-
def test_sub(self):
|
|
64
|
-
psdf = self.psdf
|
|
65
|
-
self.assertRaises(TypeError, lambda: psdf["string"] - "x")
|
|
66
|
-
self.assertRaises(TypeError, lambda: psdf["string"] - 1)
|
|
67
|
-
|
|
68
|
-
for col in self.df_cols:
|
|
69
|
-
self.assertRaises(TypeError, lambda: psdf["string"] - psdf[col])
|
|
70
|
-
|
|
71
|
-
def test_mul(self):
|
|
72
|
-
pdf, psdf = self.pdf, self.psdf
|
|
73
|
-
self.assertRaises(TypeError, lambda: psdf["string"] * "x")
|
|
74
|
-
self.assert_eq(pdf["string"] * 1, psdf["string"] * 1)
|
|
75
|
-
|
|
76
|
-
for col in self.df_cols:
|
|
77
|
-
if col in ["int", "int32"]:
|
|
78
|
-
self.assert_eq(pdf["string"] * pdf[col], psdf["string"] * psdf[col])
|
|
79
|
-
else:
|
|
80
|
-
self.assertRaises(TypeError, lambda: psdf["string"] * psdf[col])
|
|
81
|
-
|
|
82
|
-
def test_truediv(self):
|
|
83
|
-
psdf = self.psdf
|
|
84
|
-
self.assertRaises(TypeError, lambda: psdf["string"] / "x")
|
|
85
|
-
self.assertRaises(TypeError, lambda: psdf["string"] / 1)
|
|
86
|
-
|
|
87
|
-
for col in self.df_cols:
|
|
88
|
-
self.assertRaises(TypeError, lambda: psdf["string"] / psdf[col])
|
|
89
|
-
|
|
90
|
-
def test_floordiv(self):
|
|
91
|
-
psdf = self.psdf
|
|
92
|
-
self.assertRaises(TypeError, lambda: psdf["string"] // "x")
|
|
93
|
-
self.assertRaises(TypeError, lambda: psdf["string"] // 1)
|
|
94
|
-
|
|
95
|
-
for col in self.df_cols:
|
|
96
|
-
self.assertRaises(TypeError, lambda: psdf["string"] // psdf[col])
|
|
97
|
-
|
|
98
|
-
def test_mod(self):
|
|
99
|
-
psdf = self.psdf
|
|
100
|
-
self.assertRaises(TypeError, lambda: psdf["string"] % "x")
|
|
101
|
-
self.assertRaises(TypeError, lambda: psdf["string"] % 1)
|
|
102
|
-
|
|
103
|
-
for col in self.df_cols:
|
|
104
|
-
self.assertRaises(TypeError, lambda: psdf["string"] % psdf[col])
|
|
105
|
-
|
|
106
|
-
def test_pow(self):
|
|
107
|
-
psdf = self.psdf
|
|
108
|
-
self.assertRaises(TypeError, lambda: psdf["string"] ** "x")
|
|
109
|
-
self.assertRaises(TypeError, lambda: psdf["string"] ** 1)
|
|
110
|
-
|
|
111
|
-
for col in self.df_cols:
|
|
112
|
-
self.assertRaises(TypeError, lambda: psdf["string"] ** psdf[col])
|
|
113
|
-
|
|
114
|
-
def test_radd(self):
|
|
115
|
-
self.assert_eq("x" + self.pdf["string"], "x" + self.psdf["string"])
|
|
116
|
-
self.assertRaises(TypeError, lambda: 1 + self.psdf["string"])
|
|
117
|
-
|
|
118
|
-
def test_rsub(self):
|
|
119
|
-
self.assertRaises(TypeError, lambda: "x" - self.psdf["string"])
|
|
120
|
-
self.assertRaises(TypeError, lambda: 1 - self.psdf["string"])
|
|
121
|
-
|
|
122
|
-
def test_rmul(self):
|
|
123
|
-
self.assertRaises(TypeError, lambda: "x" * self.psdf["string"])
|
|
124
|
-
self.assert_eq(1 * self.pdf["string"], 1 * self.psdf["string"])
|
|
125
|
-
|
|
126
|
-
def test_rtruediv(self):
|
|
127
|
-
self.assertRaises(TypeError, lambda: "x" / self.psdf["string"])
|
|
128
|
-
self.assertRaises(TypeError, lambda: 1 / self.psdf["string"])
|
|
129
|
-
|
|
130
|
-
def test_rfloordiv(self):
|
|
131
|
-
self.assertRaises(TypeError, lambda: "x" // self.psdf["string"])
|
|
132
|
-
self.assertRaises(TypeError, lambda: 1 // self.psdf["string"])
|
|
133
|
-
|
|
134
|
-
def test_rmod(self):
|
|
135
|
-
self.assertRaises(TypeError, lambda: 1 % self.psdf["string"])
|
|
136
|
-
|
|
137
|
-
def test_rpow(self):
|
|
138
|
-
self.assertRaises(TypeError, lambda: "x" ** self.psdf["string"])
|
|
139
|
-
self.assertRaises(TypeError, lambda: 1 ** self.psdf["string"])
|
|
140
|
-
|
|
141
|
-
def test_and(self):
|
|
142
|
-
self.assertRaises(TypeError, lambda: self.psdf["string"] & True)
|
|
143
|
-
self.assertRaises(TypeError, lambda: self.psdf["string"] & False)
|
|
144
|
-
self.assertRaises(TypeError, lambda: self.psdf["string"] & self.psdf["string"])
|
|
145
|
-
|
|
146
|
-
def test_rand(self):
|
|
147
|
-
self.assertRaises(TypeError, lambda: True & self.psdf["string"])
|
|
148
|
-
self.assertRaises(TypeError, lambda: False & self.psdf["string"])
|
|
149
|
-
|
|
150
|
-
def test_or(self):
|
|
151
|
-
self.assertRaises(TypeError, lambda: self.psdf["string"] | True)
|
|
152
|
-
self.assertRaises(TypeError, lambda: self.psdf["string"] | False)
|
|
153
|
-
self.assertRaises(TypeError, lambda: self.psdf["string"] | self.psdf["string"])
|
|
154
|
-
|
|
155
|
-
def test_ror(self):
|
|
156
|
-
self.assertRaises(TypeError, lambda: True | self.psdf["string"])
|
|
157
|
-
self.assertRaises(TypeError, lambda: False | self.psdf["string"])
|
|
158
|
-
|
|
159
|
-
def test_from_to_pandas(self):
|
|
160
|
-
data = ["x", "y", "z"]
|
|
161
|
-
pser = pd.Series(data)
|
|
162
|
-
psser = ps.Series(data)
|
|
163
|
-
self.assert_eq(pser, psser._to_pandas())
|
|
164
|
-
self.assert_eq(ps.from_pandas(pser), psser)
|
|
165
|
-
|
|
166
|
-
def test_isnull(self):
|
|
167
|
-
self.assert_eq(self.pdf["string"].isnull(), self.psdf["string"].isnull())
|
|
168
|
-
|
|
169
|
-
def test_astype(self):
|
|
170
|
-
pser = pd.Series(["1", "2", "3"])
|
|
171
|
-
psser = ps.from_pandas(pser)
|
|
172
|
-
self.assert_eq(pser.astype(int), psser.astype(int))
|
|
173
|
-
self.assert_eq(pser.astype(float), psser.astype(float))
|
|
174
|
-
self.assert_eq(pser.astype(np.float32), psser.astype(np.float32))
|
|
175
|
-
self.assert_eq(pser.astype(np.int32), psser.astype(np.int32))
|
|
176
|
-
self.assert_eq(pser.astype(np.int16), psser.astype(np.int16))
|
|
177
|
-
self.assert_eq(pser.astype(np.int8), psser.astype(np.int8))
|
|
178
|
-
self.assert_eq(pser.astype(str), psser.astype(str))
|
|
179
|
-
self.assert_eq(pser.astype(bool), psser.astype(bool))
|
|
180
|
-
self.assert_eq(pser.astype("category"), psser.astype("category"))
|
|
181
|
-
cat_type = CategoricalDtype(categories=["3", "1", "2"])
|
|
182
|
-
self.assert_eq(pser.astype(cat_type), psser.astype(cat_type))
|
|
183
|
-
|
|
184
|
-
def test_neg(self):
|
|
185
|
-
self.assertRaises(TypeError, lambda: -self.psdf["string"])
|
|
186
|
-
|
|
187
|
-
def test_abs(self):
|
|
188
|
-
self.assertRaises(TypeError, lambda: abs(self.psdf["string"]))
|
|
189
|
-
|
|
190
|
-
def test_invert(self):
|
|
191
|
-
self.assertRaises(TypeError, lambda: ~self.psdf["string"])
|
|
192
|
-
|
|
193
|
-
def test_eq(self):
|
|
194
|
-
pdf, psdf = self.bool_non_numeric_pdf, self.bool_non_numeric_psdf
|
|
195
|
-
pser, psser = pdf["this"], psdf["this"]
|
|
196
|
-
other_pser, other_psser = pdf["that"], psdf["that"]
|
|
197
|
-
self.assert_eq(pser == other_pser, psser == other_psser)
|
|
198
|
-
self.assert_eq(pser == pser, psser == psser)
|
|
199
|
-
|
|
200
|
-
def test_ne(self):
|
|
201
|
-
pdf, psdf = self.bool_non_numeric_pdf, self.bool_non_numeric_psdf
|
|
202
|
-
pser, psser = pdf["this"], psdf["this"]
|
|
203
|
-
other_pser, other_psser = pdf["that"], psdf["that"]
|
|
204
|
-
self.assert_eq(pser != other_pser, psser != other_psser)
|
|
205
|
-
self.assert_eq(pser != pser, psser != psser)
|
|
206
|
-
|
|
207
|
-
def test_lt(self):
|
|
208
|
-
pdf, psdf = self.bool_non_numeric_pdf, self.bool_non_numeric_psdf
|
|
209
|
-
pser, psser = pdf["this"], psdf["this"]
|
|
210
|
-
other_pser, other_psser = pdf["that"], psdf["that"]
|
|
211
|
-
self.assert_eq(pser < other_pser, psser < other_psser)
|
|
212
|
-
self.assert_eq(pser < pser, psser < psser)
|
|
213
|
-
|
|
214
|
-
def test_le(self):
|
|
215
|
-
pdf, psdf = self.bool_non_numeric_pdf, self.bool_non_numeric_psdf
|
|
216
|
-
pser, psser = pdf["this"], psdf["this"]
|
|
217
|
-
other_pser, other_psser = pdf["that"], psdf["that"]
|
|
218
|
-
self.assert_eq(pser <= other_pser, psser <= other_psser)
|
|
219
|
-
self.assert_eq(pser <= pser, psser <= psser)
|
|
220
|
-
|
|
221
|
-
def test_gt(self):
|
|
222
|
-
pdf, psdf = self.bool_non_numeric_pdf, self.bool_non_numeric_psdf
|
|
223
|
-
pser, psser = pdf["this"], psdf["this"]
|
|
224
|
-
other_pser, other_psser = pdf["that"], psdf["that"]
|
|
225
|
-
self.assert_eq(pser > other_pser, psser > other_psser)
|
|
226
|
-
self.assert_eq(pser > pser, psser > psser)
|
|
227
|
-
|
|
228
|
-
def test_ge(self):
|
|
229
|
-
pdf, psdf = self.bool_non_numeric_pdf, self.bool_non_numeric_psdf
|
|
230
|
-
pser, psser = pdf["this"], psdf["this"]
|
|
231
|
-
other_pser, other_psser = pdf["that"], psdf["that"]
|
|
232
|
-
self.assert_eq(pser >= other_pser, psser >= other_psser)
|
|
233
|
-
self.assert_eq(pser >= pser, psser >= psser)
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
class StringOpsTests(StringOpsTestsMixin, OpsTestBase):
|
|
237
|
-
pass
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
@unittest.skipIf(
|
|
241
|
-
not extension_object_dtypes_available, "pandas extension object dtypes are not available"
|
|
242
|
-
)
|
|
243
|
-
class StringExtensionOpsTest(StringOpsTests):
|
|
244
|
-
@property
|
|
245
|
-
def pser(self):
|
|
246
|
-
return pd.Series(["x", "y", "z", None], dtype="string")
|
|
247
|
-
|
|
248
|
-
@property
|
|
249
|
-
def psser(self):
|
|
250
|
-
return ps.from_pandas(self.pser)
|
|
251
|
-
|
|
252
|
-
@property
|
|
253
|
-
def other_pser(self):
|
|
254
|
-
return pd.Series([None, "z", "y", "x"], dtype="string")
|
|
255
|
-
|
|
256
|
-
@property
|
|
257
|
-
def other_psser(self):
|
|
258
|
-
return ps.from_pandas(self.other_pser)
|
|
259
|
-
|
|
260
|
-
def test_radd(self):
|
|
261
|
-
self.assert_eq("x" + self.pser, ("x" + self.psser).astype("string"))
|
|
262
|
-
self.assertRaises(TypeError, lambda: 1 + self.psser)
|
|
263
|
-
|
|
264
|
-
def test_mul(self):
|
|
265
|
-
self.assertRaises(TypeError, lambda: self.psser * "x")
|
|
266
|
-
self.assert_eq(self.pser * 1, self.psser * 1)
|
|
267
|
-
|
|
268
|
-
with option_context("compute.ops_on_diff_frames", True):
|
|
269
|
-
for pser, psser in self.pser_psser_pairs:
|
|
270
|
-
if psser.dtype in [np.int32, np.int64]:
|
|
271
|
-
self.assert_eq(
|
|
272
|
-
ps.Series(["x", "yy", "zzz", None]).astype("string"),
|
|
273
|
-
(self.psser * psser).sort_index(),
|
|
274
|
-
)
|
|
275
|
-
else:
|
|
276
|
-
self.assertRaises(TypeError, lambda: self.psser * psser)
|
|
277
|
-
|
|
278
|
-
def test_from_to_pandas(self):
|
|
279
|
-
data = ["x", "y", "z", None]
|
|
280
|
-
pser = pd.Series(data, dtype="string")
|
|
281
|
-
psser = ps.Series(data, dtype="string")
|
|
282
|
-
self.assert_eq(pser, psser._to_pandas())
|
|
283
|
-
self.assert_eq(ps.from_pandas(pser), psser)
|
|
284
|
-
|
|
285
|
-
def test_isnull(self):
|
|
286
|
-
self.assert_eq(self.pser.isnull(), self.psser.isnull())
|
|
287
|
-
|
|
288
|
-
def test_astype(self):
|
|
289
|
-
pser = self.pser
|
|
290
|
-
psser = self.psser
|
|
291
|
-
|
|
292
|
-
self.assert_eq(pser.astype(str).tolist(), psser.astype(str).tolist())
|
|
293
|
-
|
|
294
|
-
self.assert_eq(pser.astype("category"), psser.astype("category"))
|
|
295
|
-
cat_type = CategoricalDtype(categories=["x", "y"])
|
|
296
|
-
self.assert_eq(pser.astype(cat_type), psser.astype(cat_type))
|
|
297
|
-
for dtype in self.object_extension_dtypes:
|
|
298
|
-
if dtype in ["string", StringDtype()]:
|
|
299
|
-
self.check_extension(pser.astype(dtype), psser.astype(dtype))
|
|
300
|
-
|
|
301
|
-
def test_eq(self):
|
|
302
|
-
with option_context("compute.ops_on_diff_frames", True):
|
|
303
|
-
self.check_extension(
|
|
304
|
-
self.pser == self.other_pser, (self.psser == self.other_psser).sort_index()
|
|
305
|
-
)
|
|
306
|
-
self.check_extension(self.pser == self.pser, (self.psser == self.psser).sort_index())
|
|
307
|
-
|
|
308
|
-
def test_ne(self):
|
|
309
|
-
with option_context("compute.ops_on_diff_frames", True):
|
|
310
|
-
self.check_extension(
|
|
311
|
-
self.pser != self.other_pser, (self.psser != self.other_psser).sort_index()
|
|
312
|
-
)
|
|
313
|
-
self.check_extension(self.pser != self.pser, (self.psser != self.psser).sort_index())
|
|
314
|
-
|
|
315
|
-
def test_lt(self):
|
|
316
|
-
with option_context("compute.ops_on_diff_frames", True):
|
|
317
|
-
self.check_extension(
|
|
318
|
-
self.pser < self.other_pser, (self.psser < self.other_psser).sort_index()
|
|
319
|
-
)
|
|
320
|
-
self.check_extension(self.pser < self.pser, (self.psser < self.psser).sort_index())
|
|
321
|
-
|
|
322
|
-
def test_le(self):
|
|
323
|
-
with option_context("compute.ops_on_diff_frames", True):
|
|
324
|
-
self.check_extension(
|
|
325
|
-
self.pser <= self.other_pser, (self.psser <= self.other_psser).sort_index()
|
|
326
|
-
)
|
|
327
|
-
self.check_extension(self.pser <= self.pser, (self.psser <= self.psser).sort_index())
|
|
328
|
-
|
|
329
|
-
def test_gt(self):
|
|
330
|
-
with option_context("compute.ops_on_diff_frames", True):
|
|
331
|
-
self.check_extension(
|
|
332
|
-
self.pser > self.other_pser, (self.psser > self.other_psser).sort_index()
|
|
333
|
-
)
|
|
334
|
-
self.check_extension(self.pser > self.pser, (self.psser > self.psser).sort_index())
|
|
335
|
-
|
|
336
|
-
def test_ge(self):
|
|
337
|
-
with option_context("compute.ops_on_diff_frames", True):
|
|
338
|
-
self.check_extension(
|
|
339
|
-
self.pser >= self.other_pser, (self.psser >= self.other_psser).sort_index()
|
|
340
|
-
)
|
|
341
|
-
self.check_extension(self.pser >= self.pser, (self.psser >= self.psser).sort_index())
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
if __name__ == "__main__":
|
|
345
|
-
|
|
346
|
-
from pyspark.pandas.tests.data_type_ops.test_string_ops import * # noqa: F401
|
|
347
|
-
|
|
348
|
-
try:
|
|
349
|
-
import xmlrunner
|
|
350
|
-
|
|
351
|
-
testRunner = xmlrunner.XMLTestRunner(output="target/test-reports", verbosity=2)
|
|
352
|
-
except ImportError:
|
|
353
|
-
testRunner = None
|
|
354
|
-
unittest.main(testRunner=testRunner, verbosity=2)
|
snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_timedelta_ops.py
DELETED
|
@@ -1,219 +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 datetime import timedelta
|
|
19
|
-
|
|
20
|
-
import pandas as pd
|
|
21
|
-
from pandas.api.types import CategoricalDtype
|
|
22
|
-
|
|
23
|
-
import pyspark.pandas as ps
|
|
24
|
-
from pyspark.pandas.tests.data_type_ops.testing_utils import OpsTestBase
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
class TimedeltaOpsTestsMixin:
|
|
28
|
-
@property
|
|
29
|
-
def pser(self):
|
|
30
|
-
return pd.Series([timedelta(1), timedelta(microseconds=2), timedelta(weeks=3)])
|
|
31
|
-
|
|
32
|
-
@property
|
|
33
|
-
def psser(self):
|
|
34
|
-
return ps.from_pandas(self.pser)
|
|
35
|
-
|
|
36
|
-
@property
|
|
37
|
-
def timedelta_pdf(self):
|
|
38
|
-
psers = {
|
|
39
|
-
"this": self.pser,
|
|
40
|
-
"that": pd.Series([timedelta(0), timedelta(microseconds=1), timedelta(seconds=2)]),
|
|
41
|
-
}
|
|
42
|
-
return pd.concat(psers, axis=1)
|
|
43
|
-
|
|
44
|
-
@property
|
|
45
|
-
def timedelta_psdf(self):
|
|
46
|
-
return ps.from_pandas(self.timedelta_pdf)
|
|
47
|
-
|
|
48
|
-
@property
|
|
49
|
-
def some_timedelta(self):
|
|
50
|
-
return timedelta(weeks=2)
|
|
51
|
-
|
|
52
|
-
def test_add(self):
|
|
53
|
-
self.assertRaises(TypeError, lambda: self.psser + "x")
|
|
54
|
-
self.assertRaises(TypeError, lambda: self.psser + 1)
|
|
55
|
-
|
|
56
|
-
for psser in self.pssers:
|
|
57
|
-
self.assertRaises(TypeError, lambda: self.psser + psser)
|
|
58
|
-
|
|
59
|
-
def test_sub(self):
|
|
60
|
-
self.assertRaises(TypeError, lambda: self.psser - "x")
|
|
61
|
-
self.assertRaises(TypeError, lambda: self.psser - 1)
|
|
62
|
-
|
|
63
|
-
self.assert_eq(self.pser - self.some_timedelta, self.psser - self.some_timedelta)
|
|
64
|
-
|
|
65
|
-
pdf, psdf = self.pdf, self.psdf
|
|
66
|
-
for col in self.df_cols:
|
|
67
|
-
if col == "timedelta":
|
|
68
|
-
self.assert_eq(pdf["timedelta"] - pdf[col], psdf["timedelta"] - psdf[col])
|
|
69
|
-
else:
|
|
70
|
-
self.assertRaises(TypeError, lambda: psdf["timedelta"] - psdf[col])
|
|
71
|
-
|
|
72
|
-
pdf, psdf = self.timedelta_pdf, self.timedelta_psdf
|
|
73
|
-
self.assert_eq(pdf["that"] - pdf["this"], psdf["that"] - psdf["this"])
|
|
74
|
-
|
|
75
|
-
def test_mul(self):
|
|
76
|
-
self.assertRaises(TypeError, lambda: self.psser * "x")
|
|
77
|
-
self.assertRaises(TypeError, lambda: self.psser * 1)
|
|
78
|
-
|
|
79
|
-
for psser in self.pssers:
|
|
80
|
-
self.assertRaises(TypeError, lambda: self.psser * psser)
|
|
81
|
-
|
|
82
|
-
def test_truediv(self):
|
|
83
|
-
self.assertRaises(TypeError, lambda: self.psser / "x")
|
|
84
|
-
self.assertRaises(TypeError, lambda: self.psser / 1)
|
|
85
|
-
|
|
86
|
-
for psser in self.pssers:
|
|
87
|
-
self.assertRaises(TypeError, lambda: self.psser / psser)
|
|
88
|
-
|
|
89
|
-
def test_floordiv(self):
|
|
90
|
-
self.assertRaises(TypeError, lambda: self.psser // "x")
|
|
91
|
-
self.assertRaises(TypeError, lambda: self.psser // 1)
|
|
92
|
-
|
|
93
|
-
for psser in self.pssers:
|
|
94
|
-
self.assertRaises(TypeError, lambda: self.psser // psser)
|
|
95
|
-
|
|
96
|
-
def test_mod(self):
|
|
97
|
-
self.assertRaises(TypeError, lambda: self.psser % "x")
|
|
98
|
-
self.assertRaises(TypeError, lambda: self.psser % 1)
|
|
99
|
-
|
|
100
|
-
for psser in self.pssers:
|
|
101
|
-
self.assertRaises(TypeError, lambda: self.psser % psser)
|
|
102
|
-
|
|
103
|
-
def test_pow(self):
|
|
104
|
-
self.assertRaises(TypeError, lambda: self.psser ** "x")
|
|
105
|
-
self.assertRaises(TypeError, lambda: self.psser**1)
|
|
106
|
-
|
|
107
|
-
for psser in self.pssers:
|
|
108
|
-
self.assertRaises(TypeError, lambda: self.psser**psser)
|
|
109
|
-
|
|
110
|
-
def test_radd(self):
|
|
111
|
-
self.assertRaises(TypeError, lambda: "x" + self.psser)
|
|
112
|
-
self.assertRaises(TypeError, lambda: 1 + self.psser)
|
|
113
|
-
|
|
114
|
-
def test_rsub(self):
|
|
115
|
-
self.assertRaises(TypeError, lambda: "x" - self.psser)
|
|
116
|
-
self.assertRaises(TypeError, lambda: 1 - self.psser)
|
|
117
|
-
self.assert_eq(self.some_timedelta - self.pser, self.some_timedelta - self.psser)
|
|
118
|
-
|
|
119
|
-
def test_rmul(self):
|
|
120
|
-
self.assertRaises(TypeError, lambda: "x" * self.psser)
|
|
121
|
-
self.assertRaises(TypeError, lambda: 2 * self.psser)
|
|
122
|
-
|
|
123
|
-
def test_rtruediv(self):
|
|
124
|
-
self.assertRaises(TypeError, lambda: "x" / self.psser)
|
|
125
|
-
self.assertRaises(TypeError, lambda: 1 / self.psser)
|
|
126
|
-
|
|
127
|
-
def test_rfloordiv(self):
|
|
128
|
-
self.assertRaises(TypeError, lambda: "x" // self.psser)
|
|
129
|
-
self.assertRaises(TypeError, lambda: 1 // self.psser)
|
|
130
|
-
|
|
131
|
-
def test_rmod(self):
|
|
132
|
-
self.assertRaises(TypeError, lambda: 1 % self.psser)
|
|
133
|
-
|
|
134
|
-
def test_rpow(self):
|
|
135
|
-
self.assertRaises(TypeError, lambda: "x" ** self.psser)
|
|
136
|
-
self.assertRaises(TypeError, lambda: 1**self.psser)
|
|
137
|
-
|
|
138
|
-
def test_from_to_pandas(self):
|
|
139
|
-
data = [timedelta(1), timedelta(microseconds=2)]
|
|
140
|
-
pser = pd.Series(data)
|
|
141
|
-
psser = ps.Series(data)
|
|
142
|
-
self.assert_eq(pser, psser._to_pandas())
|
|
143
|
-
self.assert_eq(ps.from_pandas(pser), psser)
|
|
144
|
-
|
|
145
|
-
def test_isnull(self):
|
|
146
|
-
self.assert_eq(self.pser.isnull(), self.psser.isnull())
|
|
147
|
-
|
|
148
|
-
def test_astype(self):
|
|
149
|
-
pser = self.pser
|
|
150
|
-
psser = self.psser
|
|
151
|
-
target_psser = ps.Series(
|
|
152
|
-
[
|
|
153
|
-
"INTERVAL '1 00:00:00' DAY TO SECOND",
|
|
154
|
-
"INTERVAL '0 00:00:00.000002' DAY TO SECOND",
|
|
155
|
-
"INTERVAL '21 00:00:00' DAY TO SECOND",
|
|
156
|
-
]
|
|
157
|
-
)
|
|
158
|
-
self.assert_eq(target_psser, psser.astype(str))
|
|
159
|
-
self.assert_eq(pser.astype("category"), psser.astype("category"))
|
|
160
|
-
cat_type = CategoricalDtype(categories=["a", "b", "c"])
|
|
161
|
-
self.assert_eq(pser.astype(cat_type), psser.astype(cat_type))
|
|
162
|
-
|
|
163
|
-
self.assertRaises(TypeError, lambda: psser.astype(bool))
|
|
164
|
-
|
|
165
|
-
def test_neg(self):
|
|
166
|
-
self.assertRaises(TypeError, lambda: -self.psser)
|
|
167
|
-
|
|
168
|
-
def test_abs(self):
|
|
169
|
-
self.assertRaises(TypeError, lambda: abs(self.psser))
|
|
170
|
-
|
|
171
|
-
def test_invert(self):
|
|
172
|
-
self.assertRaises(TypeError, lambda: ~self.psser)
|
|
173
|
-
|
|
174
|
-
def test_eq(self):
|
|
175
|
-
pdf, psdf = self.timedelta_pdf, self.timedelta_psdf
|
|
176
|
-
self.assert_eq(pdf["this"] == pdf["this"], psdf["this"] == psdf["this"])
|
|
177
|
-
self.assert_eq(pdf["this"] == pdf["that"], psdf["this"] == psdf["that"])
|
|
178
|
-
|
|
179
|
-
def test_ne(self):
|
|
180
|
-
pdf, psdf = self.timedelta_pdf, self.timedelta_psdf
|
|
181
|
-
self.assert_eq(pdf["this"] != pdf["this"], psdf["this"] != psdf["this"])
|
|
182
|
-
self.assert_eq(pdf["this"] != pdf["that"], psdf["this"] != psdf["that"])
|
|
183
|
-
|
|
184
|
-
def test_lt(self):
|
|
185
|
-
pdf, psdf = self.timedelta_pdf, self.timedelta_psdf
|
|
186
|
-
self.assert_eq(pdf["this"] < pdf["that"], psdf["this"] < psdf["that"])
|
|
187
|
-
self.assert_eq(pdf["this"] < pdf["this"], psdf["this"] < psdf["this"])
|
|
188
|
-
|
|
189
|
-
def test_le(self):
|
|
190
|
-
pdf, psdf = self.timedelta_pdf, self.timedelta_psdf
|
|
191
|
-
self.assert_eq(pdf["this"] <= pdf["that"], psdf["this"] <= psdf["that"])
|
|
192
|
-
self.assert_eq(pdf["this"] <= pdf["this"], psdf["this"] <= psdf["this"])
|
|
193
|
-
|
|
194
|
-
def test_gt(self):
|
|
195
|
-
pdf, psdf = self.timedelta_pdf, self.timedelta_psdf
|
|
196
|
-
self.assert_eq(pdf["this"] > pdf["that"], psdf["this"] > psdf["that"])
|
|
197
|
-
self.assert_eq(pdf["this"] > pdf["this"], psdf["this"] > psdf["this"])
|
|
198
|
-
|
|
199
|
-
def test_ge(self):
|
|
200
|
-
pdf, psdf = self.timedelta_pdf, self.timedelta_psdf
|
|
201
|
-
self.assert_eq(pdf["this"] >= pdf["that"], psdf["this"] >= psdf["that"])
|
|
202
|
-
self.assert_eq(pdf["this"] >= pdf["this"], psdf["this"] >= psdf["this"])
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
class TimedeltaOpsTests(TimedeltaOpsTestsMixin, OpsTestBase):
|
|
206
|
-
pass
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
if __name__ == "__main__":
|
|
210
|
-
import unittest
|
|
211
|
-
from pyspark.pandas.tests.data_type_ops.test_timedelta_ops import * # noqa: F401
|
|
212
|
-
|
|
213
|
-
try:
|
|
214
|
-
import xmlrunner
|
|
215
|
-
|
|
216
|
-
testRunner = xmlrunner.XMLTestRunner(output="target/test-reports", verbosity=2)
|
|
217
|
-
except ImportError:
|
|
218
|
-
testRunner = None
|
|
219
|
-
unittest.main(testRunner=testRunner, verbosity=2)
|