diff --git a/crates/configuration/src/version3/comparison.rs b/crates/configuration/src/version3/comparison.rs index bc41eaaf..fbb6eae6 100644 --- a/crates/configuration/src/version3/comparison.rs +++ b/crates/configuration/src/version3/comparison.rs @@ -29,22 +29,22 @@ impl ComparisonOperatorMapping { ComparisonOperatorMapping { operator_name: "<=".to_string(), exposed_name: "_lte".to_string(), - operator_kind: OperatorKind::Custom, + operator_kind: OperatorKind::LessThanOrEqual, }, ComparisonOperatorMapping { operator_name: ">".to_string(), exposed_name: "_gt".to_string(), - operator_kind: OperatorKind::Custom, + operator_kind: OperatorKind::GreaterThan, }, ComparisonOperatorMapping { operator_name: ">=".to_string(), exposed_name: "_gte".to_string(), - operator_kind: OperatorKind::Custom, + operator_kind: OperatorKind::GreaterThanOrEqual, }, ComparisonOperatorMapping { operator_name: "<".to_string(), exposed_name: "_lt".to_string(), - operator_kind: OperatorKind::Custom, + operator_kind: OperatorKind::LessThan, }, ComparisonOperatorMapping { operator_name: "<>".to_string(), diff --git a/crates/configuration/src/version4/comparison.rs b/crates/configuration/src/version4/comparison.rs index 280c1722..59359172 100644 --- a/crates/configuration/src/version4/comparison.rs +++ b/crates/configuration/src/version4/comparison.rs @@ -29,22 +29,22 @@ impl ComparisonOperatorMapping { ComparisonOperatorMapping { operator_name: "<=".to_string(), exposed_name: "_lte".to_string(), - operator_kind: OperatorKind::Custom, + operator_kind: OperatorKind::LessThanOrEqual, }, ComparisonOperatorMapping { operator_name: ">".to_string(), exposed_name: "_gt".to_string(), - operator_kind: OperatorKind::Custom, + operator_kind: OperatorKind::GreaterThan, }, ComparisonOperatorMapping { operator_name: ">=".to_string(), exposed_name: "_gte".to_string(), - operator_kind: OperatorKind::Custom, + operator_kind: OperatorKind::GreaterThanOrEqual, }, ComparisonOperatorMapping { operator_name: "<".to_string(), exposed_name: "_lt".to_string(), - operator_kind: OperatorKind::Custom, + operator_kind: OperatorKind::LessThan, }, ComparisonOperatorMapping { operator_name: "<>".to_string(), diff --git a/crates/configuration/src/version5/comparison.rs b/crates/configuration/src/version5/comparison.rs index 280c1722..59359172 100644 --- a/crates/configuration/src/version5/comparison.rs +++ b/crates/configuration/src/version5/comparison.rs @@ -29,22 +29,22 @@ impl ComparisonOperatorMapping { ComparisonOperatorMapping { operator_name: "<=".to_string(), exposed_name: "_lte".to_string(), - operator_kind: OperatorKind::Custom, + operator_kind: OperatorKind::LessThanOrEqual, }, ComparisonOperatorMapping { operator_name: ">".to_string(), exposed_name: "_gt".to_string(), - operator_kind: OperatorKind::Custom, + operator_kind: OperatorKind::GreaterThan, }, ComparisonOperatorMapping { operator_name: ">=".to_string(), exposed_name: "_gte".to_string(), - operator_kind: OperatorKind::Custom, + operator_kind: OperatorKind::GreaterThanOrEqual, }, ComparisonOperatorMapping { operator_name: "<".to_string(), exposed_name: "_lt".to_string(), - operator_kind: OperatorKind::Custom, + operator_kind: OperatorKind::LessThan, }, ComparisonOperatorMapping { operator_name: "<>".to_string(), diff --git a/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__cli_version3_tests__postgres_current_only_configure_initial_configuration_is_unchanged.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__cli_version3_tests__postgres_current_only_configure_initial_configuration_is_unchanged.snap index d0a39552..b8c03133 100644 --- a/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__cli_version3_tests__postgres_current_only_configure_initial_configuration_is_unchanged.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__cli_version3_tests__postgres_current_only_configure_initial_configuration_is_unchanged.snap @@ -1612,13 +1612,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "Phone", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "Phone", "isInfix": true }, @@ -1648,13 +1648,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "Phone", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "Phone", "isInfix": true }, @@ -1740,13 +1740,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "bool", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "bool", "isInfix": true }, @@ -1758,13 +1758,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "bool", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "bool", "isInfix": true }, @@ -1784,13 +1784,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "card_suit", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "card_suit", "isInfix": true }, @@ -1802,13 +1802,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "card_suit", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "card_suit", "isInfix": true }, @@ -1828,13 +1828,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "cidr", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "cidr", "isInfix": true }, @@ -1846,13 +1846,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "cidr", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "cidr", "isInfix": true }, @@ -1896,13 +1896,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "date", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "date", "isInfix": true }, @@ -1914,13 +1914,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "date", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "date", "isInfix": true }, @@ -1940,13 +1940,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "even_number", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "even_number", "isInfix": true }, @@ -1958,13 +1958,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "even_number", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "even_number", "isInfix": true }, @@ -1984,13 +1984,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "float8", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "float8", "isInfix": true }, @@ -2002,13 +2002,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "float8", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "float8", "isInfix": true }, @@ -2028,13 +2028,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "int2", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "int2", "isInfix": true }, @@ -2046,13 +2046,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "int2", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "int2", "isInfix": true }, @@ -2072,13 +2072,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "int4", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "int4", "isInfix": true }, @@ -2090,13 +2090,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "int4", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "int4", "isInfix": true }, @@ -2116,13 +2116,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "int8", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "int8", "isInfix": true }, @@ -2134,13 +2134,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "int8", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "int8", "isInfix": true }, @@ -2160,13 +2160,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "numeric", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "numeric", "isInfix": true }, @@ -2178,13 +2178,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "numeric", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "numeric", "isInfix": true }, @@ -2204,13 +2204,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "text", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "text", "isInfix": true }, @@ -2240,13 +2240,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "text", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "text", "isInfix": true }, @@ -2332,13 +2332,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "timestamp", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "timestamp", "isInfix": true }, @@ -2350,13 +2350,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "timestamp", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "timestamp", "isInfix": true }, @@ -2376,13 +2376,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "varchar", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "varchar", "isInfix": true }, @@ -2412,13 +2412,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "varchar", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "varchar", "isInfix": true }, @@ -2547,22 +2547,22 @@ snapshot_kind: text { "operatorName": "<=", "exposedName": "_lte", - "operatorKind": "custom" + "operatorKind": "lessThanOrEqual" }, { "operatorName": ">", "exposedName": "_gt", - "operatorKind": "custom" + "operatorKind": "greaterThan" }, { "operatorName": ">=", "exposedName": "_gte", - "operatorKind": "custom" + "operatorKind": "greaterThanOrEqual" }, { "operatorName": "<", "exposedName": "_lt", - "operatorKind": "custom" + "operatorKind": "lessThan" }, { "operatorName": "<>", diff --git a/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__cli_version4_tests__postgres_current_only_configure_initial_configuration_is_unchanged.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__cli_version4_tests__postgres_current_only_configure_initial_configuration_is_unchanged.snap index c9f8872d..846fb4e4 100644 --- a/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__cli_version4_tests__postgres_current_only_configure_initial_configuration_is_unchanged.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__cli_version4_tests__postgres_current_only_configure_initial_configuration_is_unchanged.snap @@ -1334,13 +1334,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "Phone", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "Phone", "isInfix": true }, @@ -1370,13 +1370,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "Phone", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "Phone", "isInfix": true }, @@ -1479,13 +1479,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "bool", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "bool", "isInfix": true }, @@ -1497,13 +1497,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "bool", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "bool", "isInfix": true }, @@ -1537,13 +1537,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "card_suit", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "card_suit", "isInfix": true }, @@ -1555,13 +1555,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "card_suit", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "card_suit", "isInfix": true }, @@ -1602,13 +1602,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "cidr", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "cidr", "isInfix": true }, @@ -1620,13 +1620,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "cidr", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "cidr", "isInfix": true }, @@ -1684,13 +1684,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "date", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "date", "isInfix": true }, @@ -1702,13 +1702,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "date", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "date", "isInfix": true }, @@ -1775,13 +1775,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "even_number", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "even_number", "isInfix": true }, @@ -1793,13 +1793,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "even_number", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "even_number", "isInfix": true }, @@ -1857,13 +1857,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "float8", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "float8", "isInfix": true }, @@ -1875,13 +1875,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "float8", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "float8", "isInfix": true }, @@ -1915,13 +1915,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "inet", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "inet", "isInfix": true }, @@ -1933,13 +1933,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "inet", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "inet", "isInfix": true }, @@ -2030,13 +2030,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "int2", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "int2", "isInfix": true }, @@ -2048,13 +2048,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "int2", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "int2", "isInfix": true }, @@ -2121,13 +2121,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "int4", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "int4", "isInfix": true }, @@ -2139,13 +2139,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "int4", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "int4", "isInfix": true }, @@ -2212,13 +2212,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "int8", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "int8", "isInfix": true }, @@ -2230,13 +2230,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "int8", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "int8", "isInfix": true }, @@ -2294,13 +2294,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "numeric", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "numeric", "isInfix": true }, @@ -2312,13 +2312,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "numeric", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "numeric", "isInfix": true }, @@ -2352,13 +2352,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "text", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "text", "isInfix": true }, @@ -2388,13 +2388,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "text", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "text", "isInfix": true }, @@ -2494,13 +2494,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "timestamp", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "timestamp", "isInfix": true }, @@ -2512,13 +2512,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "timestamp", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "timestamp", "isInfix": true }, @@ -2552,13 +2552,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "varchar", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "varchar", "isInfix": true }, @@ -2588,13 +2588,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "varchar", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "varchar", "isInfix": true }, @@ -2871,22 +2871,22 @@ snapshot_kind: text { "operatorName": "<=", "exposedName": "_lte", - "operatorKind": "custom" + "operatorKind": "lessThanOrEqual" }, { "operatorName": ">", "exposedName": "_gt", - "operatorKind": "custom" + "operatorKind": "greaterThan" }, { "operatorName": ">=", "exposedName": "_gte", - "operatorKind": "custom" + "operatorKind": "greaterThanOrEqual" }, { "operatorName": "<", "exposedName": "_lt", - "operatorKind": "custom" + "operatorKind": "lessThan" }, { "operatorName": "<>", diff --git a/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__cli_version5_tests__postgres_current_only_configure_initial_configuration_is_unchanged.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__cli_version5_tests__postgres_current_only_configure_initial_configuration_is_unchanged.snap index e04a6483..9d84bbc6 100644 --- a/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__cli_version5_tests__postgres_current_only_configure_initial_configuration_is_unchanged.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__cli_version5_tests__postgres_current_only_configure_initial_configuration_is_unchanged.snap @@ -1335,13 +1335,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "Phone", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "Phone", "isInfix": true }, @@ -1371,13 +1371,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "Phone", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "Phone", "isInfix": true }, @@ -1480,13 +1480,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "bool", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "bool", "isInfix": true }, @@ -1498,13 +1498,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "bool", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "bool", "isInfix": true }, @@ -1538,13 +1538,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "card_suit", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "card_suit", "isInfix": true }, @@ -1556,13 +1556,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "card_suit", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "card_suit", "isInfix": true }, @@ -1603,13 +1603,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "cidr", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "cidr", "isInfix": true }, @@ -1621,13 +1621,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "cidr", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "cidr", "isInfix": true }, @@ -1697,13 +1697,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "date", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "date", "isInfix": true }, @@ -1715,13 +1715,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "date", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "date", "isInfix": true }, @@ -1788,13 +1788,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "even_number", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "even_number", "isInfix": true }, @@ -1806,13 +1806,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "even_number", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "even_number", "isInfix": true }, @@ -1870,13 +1870,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "float8", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "float8", "isInfix": true }, @@ -1888,13 +1888,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "float8", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "float8", "isInfix": true }, @@ -1928,13 +1928,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "inet", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "inet", "isInfix": true }, @@ -1946,13 +1946,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "inet", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "inet", "isInfix": true }, @@ -2055,13 +2055,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "int2", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "int2", "isInfix": true }, @@ -2073,13 +2073,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "int2", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "int2", "isInfix": true }, @@ -2146,13 +2146,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "int4", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "int4", "isInfix": true }, @@ -2164,13 +2164,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "int4", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "int4", "isInfix": true }, @@ -2237,13 +2237,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "int8", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "int8", "isInfix": true }, @@ -2255,13 +2255,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "int8", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "int8", "isInfix": true }, @@ -2319,13 +2319,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "numeric", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "numeric", "isInfix": true }, @@ -2337,13 +2337,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "numeric", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "numeric", "isInfix": true }, @@ -2377,13 +2377,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "text", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "text", "isInfix": true }, @@ -2413,13 +2413,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "text", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "text", "isInfix": true }, @@ -2519,13 +2519,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "timestamp", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "timestamp", "isInfix": true }, @@ -2537,13 +2537,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "timestamp", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "timestamp", "isInfix": true }, @@ -2577,13 +2577,13 @@ snapshot_kind: text }, "_gt": { "operatorName": ">", - "operatorKind": "custom", + "operatorKind": "greaterThan", "argumentType": "varchar", "isInfix": true }, "_gte": { "operatorName": ">=", - "operatorKind": "custom", + "operatorKind": "greaterThanOrEqual", "argumentType": "varchar", "isInfix": true }, @@ -2613,13 +2613,13 @@ snapshot_kind: text }, "_lt": { "operatorName": "<", - "operatorKind": "custom", + "operatorKind": "lessThan", "argumentType": "varchar", "isInfix": true }, "_lte": { "operatorName": "<=", - "operatorKind": "custom", + "operatorKind": "lessThanOrEqual", "argumentType": "varchar", "isInfix": true }, @@ -2900,22 +2900,22 @@ snapshot_kind: text { "operatorName": "<=", "exposedName": "_lte", - "operatorKind": "custom" + "operatorKind": "lessThanOrEqual" }, { "operatorName": ">", "exposedName": "_gt", - "operatorKind": "custom" + "operatorKind": "greaterThan" }, { "operatorName": ">=", "exposedName": "_gte", - "operatorKind": "custom" + "operatorKind": "greaterThanOrEqual" }, { "operatorName": "<", "exposedName": "_lt", - "operatorKind": "custom" + "operatorKind": "lessThan" }, { "operatorName": "<>",