[package]
edition = "2021"
name = "sqrust-rules"
version = "0.1.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast SQL linter written in Rust — the Ruff for SQL"
homepage = "https://github.com/nafistiham/SQRust"
readme = "README.md"
keywords = [
"sql",
"linter",
"dbt",
"sqlfluff",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/nafistiham/SQRust"
[lib]
name = "sqrust_rules"
path = "src/lib.rs"
[[test]]
name = "add_column_without_default_test"
path = "tests/add_column_without_default_test.rs"
[[test]]
name = "add_months_function_test"
path = "tests/add_months_function_test.rs"
[[test]]
name = "aggregate_in_where_test"
path = "tests/aggregate_in_where_test.rs"
[[test]]
name = "aggregate_star_test"
path = "tests/aggregate_star_test.rs"
[[test]]
name = "alias_on_new_line_test"
path = "tests/alias_on_new_line_test.rs"
[[test]]
name = "alter_column_type_test"
path = "tests/alter_column_type_test.rs"
[[test]]
name = "alter_table_add_not_null_without_default_test"
path = "tests/alter_table_add_not_null_without_default_test.rs"
[[test]]
name = "alter_table_drop_column_test"
path = "tests/alter_table_drop_column_test.rs"
[[test]]
name = "alter_table_rename_column_test"
path = "tests/alter_table_rename_column_test.rs"
[[test]]
name = "alter_table_set_not_null_test"
path = "tests/alter_table_set_not_null_test.rs"
[[test]]
name = "alter_view_statement_test"
path = "tests/alter_view_statement_test.rs"
[[test]]
name = "ambiguous_bool_op_test"
path = "tests/ambiguous_bool_op_test.rs"
[[test]]
name = "ambiguous_date_format_test"
path = "tests/ambiguous_date_format_test.rs"
[[test]]
name = "anti_join_pattern_test"
path = "tests/anti_join_pattern_test.rs"
[[test]]
name = "arithmetic_operator_at_line_end_test"
path = "tests/arithmetic_operator_at_line_end_test.rs"
[[test]]
name = "arithmetic_operator_padding_test"
path = "tests/arithmetic_operator_padding_test.rs"
[[test]]
name = "avoid_iif_test"
path = "tests/avoid_iif_test.rs"
[[test]]
name = "between_null_boundary_test"
path = "tests/between_null_boundary_test.rs"
[[test]]
name = "between_reversed_bounds_test"
path = "tests/between_reversed_bounds_test.rs"
[[test]]
name = "blank_line_after_cte_test"
path = "tests/blank_line_after_cte_test.rs"
[[test]]
name = "blank_line_between_ctes_test"
path = "tests/blank_line_between_ctes_test.rs"
[[test]]
name = "blank_line_between_statements_test"
path = "tests/blank_line_between_statements_test.rs"
[[test]]
name = "boolean_comparison_test"
path = "tests/boolean_comparison_test.rs"
[[test]]
name = "call_statement_test"
path = "tests/call_statement_test.rs"
[[test]]
name = "case_else_test"
path = "tests/case_else_test.rs"
[[test]]
name = "case_end_new_line_test"
path = "tests/case_end_new_line_test.rs"
[[test]]
name = "case_null_check_test"
path = "tests/case_null_check_test.rs"
[[test]]
name = "case_when_count_test"
path = "tests/case_when_count_test.rs"
[[test]]
name = "case_when_same_result_test"
path = "tests/case_when_same_result_test.rs"
[[test]]
name = "cast_to_varchar_test"
path = "tests/cast_to_varchar_test.rs"
[[test]]
name = "cast_vs_convert_test"
path = "tests/cast_vs_convert_test.rs"
[[test]]
name = "cast_without_length_test"
path = "tests/cast_without_length_test.rs"
[[test]]
name = "chained_comparisons_test"
path = "tests/chained_comparisons_test.rs"
[[test]]
name = "clause_on_new_line_test"
path = "tests/clause_on_new_line_test.rs"
[[test]]
name = "closing_paren_new_line_test"
path = "tests/closing_paren_new_line_test.rs"
[[test]]
name = "coalesce_null_arg_test"
path = "tests/coalesce_null_arg_test.rs"
[[test]]
name = "coalesce_test"
path = "tests/coalesce_test.rs"
[[test]]
name = "coalesce_with_single_arg_test"
path = "tests/coalesce_with_single_arg_test.rs"
[[test]]
name = "colon_cast_test"
path = "tests/colon_cast_test.rs"
[[test]]
name = "column_alias_in_where_test"
path = "tests/column_alias_in_where_test.rs"
[[test]]
name = "column_count_test"
path = "tests/column_count_test.rs"
[[test]]
name = "column_name_conflict_test"
path = "tests/column_name_conflict_test.rs"
[[test]]
name = "comma_after_last_column_test"
path = "tests/comma_after_last_column_test.rs"
[[test]]
name = "comma_style_test"
path = "tests/comma_style_test.rs"
[[test]]
name = "comment_spacing_test"
path = "tests/comment_spacing_test.rs"
[[test]]
name = "comment_style_test"
path = "tests/comment_style_test.rs"
[[test]]
name = "comment_without_space_test"
path = "tests/comment_without_space_test.rs"
[[test]]
name = "comparison_operator_spacing_test"
path = "tests/comparison_operator_spacing_test.rs"
[[test]]
name = "concat_function_null_arg_test"
path = "tests/concat_function_null_arg_test.rs"
[[test]]
name = "concat_operator_test"
path = "tests/concat_operator_test.rs"
[[test]]
name = "consecutive_semicolons_test"
path = "tests/consecutive_semicolons_test.rs"
[[test]]
name = "consistent_comment_style_test"
path = "tests/consistent_comment_style_test.rs"
[[test]]
name = "consistent_quote_style_test"
path = "tests/consistent_quote_style_test.rs"
[[test]]
name = "convert_function_test"
path = "tests/convert_function_test.rs"
[[test]]
name = "correlated_subquery_test"
path = "tests/correlated_subquery_test.rs"
[[test]]
name = "count_distinct_in_group_test"
path = "tests/count_distinct_in_group_test.rs"
[[test]]
name = "count_star_test"
path = "tests/count_star_test.rs"
[[test]]
name = "create_index_if_not_exists_test"
path = "tests/create_index_if_not_exists_test.rs"
[[test]]
name = "create_or_replace_test"
path = "tests/create_or_replace_test.rs"
[[test]]
name = "create_schema_statement_test"
path = "tests/create_schema_statement_test.rs"
[[test]]
name = "create_sequence_statement_test"
path = "tests/create_sequence_statement_test.rs"
[[test]]
name = "create_table_without_primary_key_test"
path = "tests/create_table_without_primary_key_test.rs"
[[test]]
name = "create_temp_table_test"
path = "tests/create_temp_table_test.rs"
[[test]]
name = "create_trigger_statement_test"
path = "tests/create_trigger_statement_test.rs"
[[test]]
name = "create_view_with_select_star_test"
path = "tests/create_view_with_select_star_test.rs"
[[test]]
name = "cross_apply_test"
path = "tests/cross_apply_test.rs"
[[test]]
name = "cross_database_reference_test"
path = "tests/cross_database_reference_test.rs"
[[test]]
name = "cross_join_keyword_test"
path = "tests/cross_join_keyword_test.rs"
[[test]]
name = "date_arithmetic_test"
path = "tests/date_arithmetic_test.rs"
[[test]]
name = "date_trunc_function_test"
path = "tests/date_trunc_function_test.rs"
[[test]]
name = "dateadd_function_test"
path = "tests/dateadd_function_test.rs"
[[test]]
name = "deep_cte_chain_test"
path = "tests/deep_cte_chain_test.rs"
[[test]]
name = "deeply_nested_case_test"
path = "tests/deeply_nested_case_test.rs"
[[test]]
name = "delete_without_where_test"
path = "tests/delete_without_where_test.rs"
[[test]]
name = "distinct_group_by_test"
path = "tests/distinct_group_by_test.rs"
[[test]]
name = "distinct_parenthesis_test"
path = "tests/distinct_parenthesis_test.rs"
[[test]]
name = "distinct_with_window_function_test"
path = "tests/distinct_with_window_function_test.rs"
[[test]]
name = "division_by_zero_test"
path = "tests/division_by_zero_test.rs"
[[test]]
name = "drop_column_if_exists_test"
path = "tests/drop_column_if_exists_test.rs"
[[test]]
name = "drop_index_test"
path = "tests/drop_index_test.rs"
[[test]]
name = "drop_schema_statement_test"
path = "tests/drop_schema_statement_test.rs"
[[test]]
name = "drop_table_if_exists_test"
path = "tests/drop_table_if_exists_test.rs"
[[test]]
name = "drop_view_if_exists_test"
path = "tests/drop_view_if_exists_test.rs"
[[test]]
name = "duplicate_alias_test"
path = "tests/duplicate_alias_test.rs"
[[test]]
name = "duplicate_column_in_create_test"
path = "tests/duplicate_column_in_create_test.rs"
[[test]]
name = "duplicate_condition_test"
path = "tests/duplicate_condition_test.rs"
[[test]]
name = "duplicate_cte_names_test"
path = "tests/duplicate_cte_names_test.rs"
[[test]]
name = "duplicate_group_by_column_test"
path = "tests/duplicate_group_by_column_test.rs"
[[test]]
name = "duplicate_join_test"
path = "tests/duplicate_join_test.rs"
[[test]]
name = "duplicate_order_by_column_test"
path = "tests/duplicate_order_by_column_test.rs"
[[test]]
name = "duplicate_select_column_test"
path = "tests/duplicate_select_column_test.rs"
[[test]]
name = "empty_in_list_test"
path = "tests/empty_in_list_test.rs"
[[test]]
name = "empty_string_comparison_test"
path = "tests/empty_string_comparison_test.rs"
[[test]]
name = "except_all_test"
path = "tests/except_all_test.rs"
[[test]]
name = "excessive_group_by_test"
path = "tests/excessive_group_by_test.rs"
[[test]]
name = "excessive_union_chain_test"
path = "tests/excessive_union_chain_test.rs"
[[test]]
name = "excessive_where_conditions_test"
path = "tests/excessive_where_conditions_test.rs"
[[test]]
name = "execute_statement_test"
path = "tests/execute_statement_test.rs"
[[test]]
name = "exists_over_in_test"
path = "tests/exists_over_in_test.rs"
[[test]]
name = "exists_select_list_test"
path = "tests/exists_select_list_test.rs"
[[test]]
name = "explain_statement_test"
path = "tests/explain_statement_test.rs"
[[test]]
name = "explicit_alias_test"
path = "tests/explicit_alias_test.rs"
[[test]]
name = "explicit_column_alias_test"
path = "tests/explicit_column_alias_test.rs"
[[test]]
name = "explicit_join_type_test"
path = "tests/explicit_join_type_test.rs"
[[test]]
name = "floating_point_comparison_test"
path = "tests/floating_point_comparison_test.rs"
[[test]]
name = "format_function_test"
path = "tests/format_function_test.rs"
[[test]]
name = "full_outer_join_test"
path = "tests/full_outer_join_test.rs"
[[test]]
name = "function_call_depth_test"
path = "tests/function_call_depth_test.rs"
[[test]]
name = "function_call_spacing_test"
path = "tests/function_call_spacing_test.rs"
[[test]]
name = "function_on_filtered_column_test"
path = "tests/function_on_filtered_column_test.rs"
[[test]]
name = "functions_test"
path = "tests/functions_test.rs"
[[test]]
name = "get_date_test"
path = "tests/get_date_test.rs"
[[test]]
name = "grant_all_privileges_test"
path = "tests/grant_all_privileges_test.rs"
[[test]]
name = "group_by_column_per_line_test"
path = "tests/group_by_column_per_line_test.rs"
[[test]]
name = "group_by_on_new_line_test"
path = "tests/group_by_on_new_line_test.rs"
[[test]]
name = "group_by_position_test"
path = "tests/group_by_position_test.rs"
[[test]]
name = "having_conditions_count_test"
path = "tests/having_conditions_count_test.rs"
[[test]]
name = "having_on_new_line_test"
path = "tests/having_on_new_line_test.rs"
[[test]]
name = "having_without_aggregate_test"
path = "tests/having_without_aggregate_test.rs"
[[test]]
name = "having_without_group_by_test"
path = "tests/having_without_group_by_test.rs"
[[test]]
name = "having_without_select_agg_test"
path = "tests/having_without_select_agg_test.rs"
[[test]]
name = "if_null_function_test"
path = "tests/if_null_function_test.rs"
[[test]]
name = "implicit_boolean_comparison_test"
path = "tests/implicit_boolean_comparison_test.rs"
[[test]]
name = "implicit_cross_join_test"
path = "tests/implicit_cross_join_test.rs"
[[test]]
name = "implicit_order_direction_test"
path = "tests/implicit_order_direction_test.rs"
[[test]]
name = "in_null_comparison_test"
path = "tests/in_null_comparison_test.rs"
[[test]]
name = "in_single_value_test"
path = "tests/in_single_value_test.rs"
[[test]]
name = "in_subquery_multi_column_test"
path = "tests/in_subquery_multi_column_test.rs"
[[test]]
name = "inconsistent_column_reference_test"
path = "tests/inconsistent_column_reference_test.rs"
[[test]]
name = "inconsistent_order_by_direction_test"
path = "tests/inconsistent_order_by_direction_test.rs"
[[test]]
name = "indentation_consistency_test"
path = "tests/indentation_consistency_test.rs"
[[test]]
name = "insert_ignore_test"
path = "tests/insert_ignore_test.rs"
[[test]]
name = "insert_or_replace_test"
path = "tests/insert_or_replace_test.rs"
[[test]]
name = "insert_overwrite_test"
path = "tests/insert_overwrite_test.rs"
[[test]]
name = "insert_select_star_test"
path = "tests/insert_select_star_test.rs"
[[test]]
name = "insert_values_limit_test"
path = "tests/insert_values_limit_test.rs"
[[test]]
name = "insert_without_column_list_test"
path = "tests/insert_without_column_list_test.rs"
[[test]]
name = "integer_division_test"
path = "tests/integer_division_test.rs"
[[test]]
name = "interval_expression_test"
path = "tests/interval_expression_test.rs"
[[test]]
name = "is_null_test"
path = "tests/is_null_test.rs"
[[test]]
name = "join_condition_style_test"
path = "tests/join_condition_style_test.rs"
[[test]]
name = "join_on_new_line_test"
path = "tests/join_on_new_line_test.rs"
[[test]]
name = "join_without_condition_test"
path = "tests/join_without_condition_test.rs"
[[test]]
name = "keyword_identifier_test"
path = "tests/keyword_identifier_test.rs"
[[test]]
name = "keywords_test"
path = "tests/keywords_test.rs"
[[test]]
name = "large_in_list_test"
path = "tests/large_in_list_test.rs"
[[test]]
name = "large_offset_test"
path = "tests/large_offset_test.rs"
[[test]]
name = "lateral_column_alias_test"
path = "tests/lateral_column_alias_test.rs"
[[test]]
name = "lateral_join_test"
path = "tests/lateral_join_test.rs"
[[test]]
name = "leading_comma_test"
path = "tests/leading_comma_test.rs"
[[test]]
name = "leading_operator_test"
path = "tests/leading_operator_test.rs"
[[test]]
name = "leading_zero_numeric_test"
path = "tests/leading_zero_numeric_test.rs"
[[test]]
name = "left_join_test"
path = "tests/left_join_test.rs"
[[test]]
name = "len_function_test"
path = "tests/len_function_test.rs"
[[test]]
name = "like_escape_char_test"
path = "tests/like_escape_char_test.rs"
[[test]]
name = "like_percent_only_test"
path = "tests/like_percent_only_test.rs"
[[test]]
name = "like_tautology_test"
path = "tests/like_tautology_test.rs"
[[test]]
name = "like_without_wildcard_test"
path = "tests/like_without_wildcard_test.rs"
[[test]]
name = "limit_on_new_line_test"
path = "tests/limit_on_new_line_test.rs"
[[test]]
name = "limit_without_order_by_test"
path = "tests/limit_without_order_by_test.rs"
[[test]]
name = "literals_test"
path = "tests/literals_test.rs"
[[test]]
name = "lock_table_statement_test"
path = "tests/lock_table_statement_test.rs"
[[test]]
name = "long_lines_test"
path = "tests/long_lines_test.rs"
[[test]]
name = "max_blank_lines_test"
path = "tests/max_blank_lines_test.rs"
[[test]]
name = "max_identifier_length_test"
path = "tests/max_identifier_length_test.rs"
[[test]]
name = "max_join_on_conditions_test"
path = "tests/max_join_on_conditions_test.rs"
[[test]]
name = "max_line_count_test"
path = "tests/max_line_count_test.rs"
[[test]]
name = "max_select_columns_test"
path = "tests/max_select_columns_test.rs"
[[test]]
name = "max_statement_length_test"
path = "tests/max_statement_length_test.rs"
[[test]]
name = "merge_statement_test"
path = "tests/merge_statement_test.rs"
[[test]]
name = "mixed_aggregate_and_columns_test"
path = "tests/mixed_aggregate_and_columns_test.rs"
[[test]]
name = "mixed_join_types_test"
path = "tests/mixed_join_types_test.rs"
[[test]]
name = "mixed_line_endings_test"
path = "tests/mixed_line_endings_test.rs"
[[test]]
name = "multiple_count_distinct_test"
path = "tests/multiple_count_distinct_test.rs"
[[test]]
name = "multiple_primary_keys_test"
path = "tests/multiple_primary_keys_test.rs"
[[test]]
name = "multiple_statements_in_file_test"
path = "tests/multiple_statements_in_file_test.rs"
[[test]]
name = "n_string_literal_test"
path = "tests/n_string_literal_test.rs"
[[test]]
name = "natural_join_test"
path = "tests/natural_join_test.rs"
[[test]]
name = "negated_is_null_test"
path = "tests/negated_is_null_test.rs"
[[test]]
name = "negated_not_like_test"
path = "tests/negated_not_like_test.rs"
[[test]]
name = "nested_aggregate_test"
path = "tests/nested_aggregate_test.rs"
[[test]]
name = "nested_case_in_else_test"
path = "tests/nested_case_in_else_test.rs"
[[test]]
name = "nested_parentheses_test"
path = "tests/nested_parentheses_test.rs"
[[test]]
name = "nested_subquery_test"
path = "tests/nested_subquery_test.rs"
[[test]]
name = "no_char_type_test"
path = "tests/no_char_type_test.rs"
[[test]]
name = "no_charindex_function_test"
path = "tests/no_charindex_function_test.rs"
[[test]]
name = "no_current_timestamp_in_where_test"
path = "tests/no_current_timestamp_in_where_test.rs"
[[test]]
name = "no_decode_function_test"
path = "tests/no_decode_function_test.rs"
[[test]]
name = "no_double_spaces_test"
path = "tests/no_double_spaces_test.rs"
[[test]]
name = "no_dual_table_test"
path = "tests/no_dual_table_test.rs"
[[test]]
name = "no_if_function_test"
path = "tests/no_if_function_test.rs"
[[test]]
name = "no_ilike_test"
path = "tests/no_ilike_test.rs"
[[test]]
name = "no_isnull_function_test"
path = "tests/no_isnull_function_test.rs"
[[test]]
name = "no_minus_operator_test"
path = "tests/no_minus_operator_test.rs"
[[test]]
name = "no_money_type_test"
path = "tests/no_money_type_test.rs"
[[test]]
name = "no_multiple_statements_on_line_test"
path = "tests/no_multiple_statements_on_line_test.rs"
[[test]]
name = "no_null_default_test"
path = "tests/no_null_default_test.rs"
[[test]]
name = "no_nvl2_test"
path = "tests/no_nvl2_test.rs"
[[test]]
name = "no_rownum_test"
path = "tests/no_rownum_test.rs"
[[test]]
name = "no_select_all_test"
path = "tests/no_select_all_test.rs"
[[test]]
name = "no_similar_to_test"
path = "tests/no_similar_to_test.rs"
[[test]]
name = "no_space_after_unary_minus_test"
path = "tests/no_space_after_unary_minus_test.rs"
[[test]]
name = "no_space_around_dot_test"
path = "tests/no_space_around_dot_test.rs"
[[test]]
name = "no_space_before_open_paren_test"
path = "tests/no_space_before_open_paren_test.rs"
[[test]]
name = "no_space_inside_brackets_test"
path = "tests/no_space_inside_brackets_test.rs"
[[test]]
name = "no_sysdate_test"
path = "tests/no_sysdate_test.rs"
[[test]]
name = "no_table_hint_test"
path = "tests/no_table_hint_test.rs"
[[test]]
name = "no_using_clause_test"
path = "tests/no_using_clause_test.rs"
[[test]]
name = "no_values_function_test"
path = "tests/no_values_function_test.rs"
[[test]]
name = "non_deterministic_function_test"
path = "tests/non_deterministic_function_test.rs"
[[test]]
name = "non_deterministic_group_by_test"
path = "tests/non_deterministic_group_by_test.rs"
[[test]]
name = "not_equal_test"
path = "tests/not_equal_test.rs"
[[test]]
name = "null_in_not_in_test"
path = "tests/null_in_not_in_test.rs"
[[test]]
name = "null_safe_equality_test"
path = "tests/null_safe_equality_test.rs"
[[test]]
name = "nullable_concat_test"
path = "tests/nullable_concat_test.rs"
[[test]]
name = "nulls_ordering_test"
path = "tests/nulls_ordering_test.rs"
[[test]]
name = "nvl_function_test"
path = "tests/nvl_function_test.rs"
[[test]]
name = "on_conflict_clause_test"
path = "tests/on_conflict_clause_test.rs"
[[test]]
name = "operator_at_line_start_test"
path = "tests/operator_at_line_start_test.rs"
[[test]]
name = "or_in_join_condition_test"
path = "tests/or_in_join_condition_test.rs"
[[test]]
name = "or_instead_of_in_test"
path = "tests/or_instead_of_in_test.rs"
[[test]]
name = "order_by_column_per_line_test"
path = "tests/order_by_column_per_line_test.rs"
[[test]]
name = "order_by_in_cte_test"
path = "tests/order_by_in_cte_test.rs"
[[test]]
name = "order_by_in_subquery_test"
path = "tests/order_by_in_subquery_test.rs"
[[test]]
name = "order_by_in_view_test"
path = "tests/order_by_in_view_test.rs"
[[test]]
name = "order_by_on_new_line_test"
path = "tests/order_by_on_new_line_test.rs"
[[test]]
name = "order_by_position_test"
path = "tests/order_by_position_test.rs"
[[test]]
name = "order_by_with_offset_test"
path = "tests/order_by_with_offset_test.rs"
[[test]]
name = "overlapping_case_when_test"
path = "tests/overlapping_case_when_test.rs"
[[test]]
name = "parenthesis_spacing_test"
path = "tests/parenthesis_spacing_test.rs"
[[test]]
name = "pivot_unpivot_test"
path = "tests/pivot_unpivot_test.rs"
[[test]]
name = "prefer_ansi_trim_test"
path = "tests/prefer_ansi_trim_test.rs"
[[test]]
name = "prefer_coalesce_over_null_case_test"
path = "tests/prefer_coalesce_over_null_case_test.rs"
[[test]]
name = "prefer_extract_test"
path = "tests/prefer_extract_test.rs"
[[test]]
name = "recursive_cte_test"
path = "tests/recursive_cte_test.rs"
[[test]]
name = "redundant_alias_test"
path = "tests/redundant_alias_test.rs"
[[test]]
name = "redundant_between_test"
path = "tests/redundant_between_test.rs"
[[test]]
name = "regexp_function_test"
path = "tests/regexp_function_test.rs"
[[test]]
name = "scalar_subquery_in_select_test"
path = "tests/scalar_subquery_in_select_test.rs"
[[test]]
name = "select_column_per_line_test"
path = "tests/select_column_per_line_test.rs"
[[test]]
name = "select_distinct_order_by_test"
path = "tests/select_distinct_order_by_test.rs"
[[test]]
name = "select_distinct_star_test"
path = "tests/select_distinct_star_test.rs"
[[test]]
name = "select_distinct_with_group_by_test"
path = "tests/select_distinct_with_group_by_test.rs"
[[test]]
name = "select_for_update_test"
path = "tests/select_for_update_test.rs"
[[test]]
name = "select_into_table_test"
path = "tests/select_into_table_test.rs"
[[test]]
name = "select_null_expression_test"
path = "tests/select_null_expression_test.rs"
[[test]]
name = "select_only_literals_test"
path = "tests/select_only_literals_test.rs"
[[test]]
name = "select_star_in_cte_test"
path = "tests/select_star_in_cte_test.rs"
[[test]]
name = "select_star_spacing_test"
path = "tests/select_star_spacing_test.rs"
[[test]]
name = "select_star_test"
path = "tests/select_star_test.rs"
[[test]]
name = "select_star_with_other_columns_test"
path = "tests/select_star_with_other_columns_test.rs"
[[test]]
name = "select_target_new_line_test"
path = "tests/select_target_new_line_test.rs"
[[test]]
name = "select_top_n_test"
path = "tests/select_top_n_test.rs"
[[test]]
name = "select_without_from_test"
path = "tests/select_without_from_test.rs"
[[test]]
name = "self_alias_test"
path = "tests/self_alias_test.rs"
[[test]]
name = "self_comparison_test"
path = "tests/self_comparison_test.rs"
[[test]]
name = "self_join_test"
path = "tests/self_join_test.rs"
[[test]]
name = "set_op_precedence_test"
path = "tests/set_op_precedence_test.rs"
[[test]]
name = "set_operator_new_line_test"
path = "tests/set_operator_new_line_test.rs"
[[test]]
name = "set_variable_statement_test"
path = "tests/set_variable_statement_test.rs"
[[test]]
name = "single_space_after_comma_test"
path = "tests/single_space_after_comma_test.rs"
[[test]]
name = "space_after_as_test"
path = "tests/space_after_as_test.rs"
[[test]]
name = "space_after_keyword_test"
path = "tests/space_after_keyword_test.rs"
[[test]]
name = "space_after_not_test"
path = "tests/space_after_not_test.rs"
[[test]]
name = "space_after_semicolon_test"
path = "tests/space_after_semicolon_test.rs"
[[test]]
name = "space_around_bitwise_operator_test"
path = "tests/space_around_bitwise_operator_test.rs"
[[test]]
name = "space_around_concat_operator_test"
path = "tests/space_around_concat_operator_test.rs"
[[test]]
name = "space_around_equals_test"
path = "tests/space_around_equals_test.rs"
[[test]]
name = "space_around_modulo_test"
path = "tests/space_around_modulo_test.rs"
[[test]]
name = "space_before_comma_test"
path = "tests/space_before_comma_test.rs"
[[test]]
name = "space_before_in_test"
path = "tests/space_before_in_test.rs"
[[test]]
name = "statement_semicolons_test"
path = "tests/statement_semicolons_test.rs"
[[test]]
name = "string_agg_separator_test"
path = "tests/string_agg_separator_test.rs"
[[test]]
name = "string_literal_newline_test"
path = "tests/string_literal_newline_test.rs"
[[test]]
name = "string_to_number_comparison_test"
path = "tests/string_to_number_comparison_test.rs"
[[test]]
name = "subquery_in_group_by_test"
path = "tests/subquery_in_group_by_test.rs"
[[test]]
name = "subquery_in_having_test"
path = "tests/subquery_in_having_test.rs"
[[test]]
name = "subquery_in_join_condition_test"
path = "tests/subquery_in_join_condition_test.rs"
[[test]]
name = "subquery_in_order_by_test"
path = "tests/subquery_in_order_by_test.rs"
[[test]]
name = "subquery_in_select_test"
path = "tests/subquery_in_select_test.rs"
[[test]]
name = "subquery_without_alias_test"
path = "tests/subquery_without_alias_test.rs"
[[test]]
name = "substring_function_test"
path = "tests/substring_function_test.rs"
[[test]]
name = "tab_indentation_test"
path = "tests/tab_indentation_test.rs"
[[test]]
name = "table_alias_conflict_test"
path = "tests/table_alias_conflict_test.rs"
[[test]]
name = "too_many_ctes_test"
path = "tests/too_many_ctes_test.rs"
[[test]]
name = "too_many_joins_test"
path = "tests/too_many_joins_test.rs"
[[test]]
name = "too_many_order_by_columns_test"
path = "tests/too_many_order_by_columns_test.rs"
[[test]]
name = "too_many_subqueries_test"
path = "tests/too_many_subqueries_test.rs"
[[test]]
name = "too_many_unions_test"
path = "tests/too_many_unions_test.rs"
[[test]]
name = "too_many_window_functions_test"
path = "tests/too_many_window_functions_test.rs"
[[test]]
name = "top_n_without_order_test"
path = "tests/top_n_without_order_test.rs"
[[test]]
name = "trailing_blank_lines_test"
path = "tests/trailing_blank_lines_test.rs"
[[test]]
name = "trailing_comma_test"
path = "tests/trailing_comma_test.rs"
[[test]]
name = "trailing_newline_test"
path = "tests/trailing_newline_test.rs"
[[test]]
name = "trailing_whitespace_test"
path = "tests/trailing_whitespace_test.rs"
[[test]]
name = "truncate_table_test"
path = "tests/truncate_table_test.rs"
[[test]]
name = "try_cast_test"
path = "tests/try_cast_test.rs"
[[test]]
name = "types_test"
path = "tests/types_test.rs"
[[test]]
name = "unaliased_expression_test"
path = "tests/unaliased_expression_test.rs"
[[test]]
name = "undelimited_date_string_test"
path = "tests/undelimited_date_string_test.rs"
[[test]]
name = "unicode_identifiers_test"
path = "tests/unicode_identifiers_test.rs"
[[test]]
name = "union_all_test"
path = "tests/union_all_test.rs"
[[test]]
name = "union_branch_limit_test"
path = "tests/union_branch_limit_test.rs"
[[test]]
name = "union_column_alias_test"
path = "tests/union_column_alias_test.rs"
[[test]]
name = "union_column_mismatch_test"
path = "tests/union_column_mismatch_test.rs"
[[test]]
name = "unnecessary_alias_quoting_test"
path = "tests/unnecessary_alias_quoting_test.rs"
[[test]]
name = "unnecessary_case_when_test"
path = "tests/unnecessary_case_when_test.rs"
[[test]]
name = "unnecessary_else_null_test"
path = "tests/unnecessary_else_null_test.rs"
[[test]]
name = "unqualified_column_in_join_test"
path = "tests/unqualified_column_in_join_test.rs"
[[test]]
name = "unsafe_division_test"
path = "tests/unsafe_division_test.rs"
[[test]]
name = "unused_cte_test"
path = "tests/unused_cte_test.rs"
[[test]]
name = "unused_join_test"
path = "tests/unused_join_test.rs"
[[test]]
name = "unused_table_alias_test"
path = "tests/unused_table_alias_test.rs"
[[test]]
name = "update_set_duplicate_test"
path = "tests/update_set_duplicate_test.rs"
[[test]]
name = "update_with_join_test"
path = "tests/update_with_join_test.rs"
[[test]]
name = "update_without_where_test"
path = "tests/update_without_where_test.rs"
[[test]]
name = "upper_lower_test"
path = "tests/upper_lower_test.rs"
[[test]]
name = "use_current_date_test"
path = "tests/use_current_date_test.rs"
[[test]]
name = "when_on_new_line_test"
path = "tests/when_on_new_line_test.rs"
[[test]]
name = "where_on_new_line_test"
path = "tests/where_on_new_line_test.rs"
[[test]]
name = "where_tautology_test"
path = "tests/where_tautology_test.rs"
[[test]]
name = "whitespace_before_semicolon_test"
path = "tests/whitespace_before_semicolon_test.rs"
[[test]]
name = "wildcard_in_union_test"
path = "tests/wildcard_in_union_test.rs"
[[test]]
name = "window_frame_all_rows_test"
path = "tests/window_frame_all_rows_test.rs"
[[test]]
name = "window_frame_full_partition_test"
path = "tests/window_frame_full_partition_test.rs"
[[test]]
name = "window_function_in_where_test"
path = "tests/window_function_in_where_test.rs"
[[test]]
name = "window_function_without_partition_test"
path = "tests/window_function_without_partition_test.rs"
[[test]]
name = "window_without_order_by_test"
path = "tests/window_without_order_by_test.rs"
[[test]]
name = "year_month_day_function_test"
path = "tests/year_month_day_function_test.rs"
[[test]]
name = "zero_limit_clause_test"
path = "tests/zero_limit_clause_test.rs"
[dependencies.sqlparser]
version = "0.53"
[dependencies.sqrust-core]
version = "0.1.4"
[dev-dependencies.sqrust-core]
version = "0.1.4"