-
Notifications
You must be signed in to change notification settings - Fork 608
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(tests): remove UnorderedComparator class
Merging into `BackendTest` and replacing with class variable
- Loading branch information
Showing
6 changed files
with
42 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#+title: Backend Test | ||
|
||
| Variable | Default | Type | Description | Required | | ||
|-------------------------------------+------------------------------+---------------------------+-------------------------------------------------------------------------+----------| | ||
| ~check_dtype~ | True | Bool | check that dtypes match when comparing Pandas ~series~ | True | | ||
| ~check_names~ | True | Bool | check that column name matches when comparing Pandas ~series~ | True | | ||
| ~supports_arrays~ | True | Bool | backend supports arrays | | | ||
| ~supports_arrays_outside_of_select~ | True | Bool | backend supports arrays outside of select statements | | | ||
| ~supports_window_operations~ | True | Bool | backend supports windowing | | | ||
| ~supports_divide_by_zero~ | False | Bool | backend supports division by zero | | | ||
| ~returned_timestamp_unit~ | "us" | Unit abbreviation | precision of timestamp unit returned | | | ||
| ~supported_to_timestamp_units~ | {"s", "ms", "us"} | Set of unit abbreviations | supported units of precision for timestamps | | | ||
| ~supports_floating_modulus~ | True | Bool | backend supports floating numbers in modulus operations | | | ||
| ~native_bool~ | True | Bool | backend has native boolean types | | | ||
| ~supports_structs~ | True | Bool | backend supports structs | | | ||
| ~supports_json~ | True | Bool | backend supports JSON | | | ||
| ~supports_map~ | False | Bool | backend supports maps basically nothing does except trino and snowflake | | | ||
| ~reduction_tolerance~ | 1e-7 | Float | | | | ||
| ~default_identifier_case_fn~ | staticmethod(toolz.identity) | Function | | | | ||
| ~stateful~ | True | Bool | | | | ||
| ~service_name~ | None | | | | | ||
| ~supports_tpch~ | False | Bool | | | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters