diff --git a/.github/workflows/cargo-test.yaml b/.github/workflows/cargo-test.yaml index 39561629f..735731fe5 100644 --- a/.github/workflows/cargo-test.yaml +++ b/.github/workflows/cargo-test.yaml @@ -82,7 +82,7 @@ jobs: - name: run tests run: | - cargo nextest run --no-fail-fast --release -p other-db-tests --features ${{ env.FEATURE_NAME }} ${{ env.TEST_FLAGS }} + cargo nextest run --no-fail-fast --release -p databases-tests --features ${{ env.FEATURE_NAME }} ${{ env.TEST_FLAGS }} env: POSTGRESQL_CONNECTION_STRING: ${{ fromJSON(steps.configuration.outputs.configuration).env.POSTGRESQL_CONNECTION_STRING }} FEATURE_NAME: ${{ fromJSON(steps.configuration.outputs.configuration).feature }} @@ -135,7 +135,7 @@ jobs: - name: run tests run: | - cargo nextest run --no-fail-fast --release -p other-db-tests --features aurora + cargo nextest run --no-fail-fast --release -p databases-tests --features aurora env: RUST_LOG: INFO AURORA_CONNECTION_STRING: ${{ secrets.AURORA_CONNECTION_STRING }} @@ -192,6 +192,6 @@ jobs: - name: run tests run: | - cargo nextest run --no-fail-fast --release -p other-db-tests --features ${{ matrix.database }} + cargo nextest run --no-fail-fast --release -p databases-tests --features ${{ matrix.database }} env: RUST_LOG: INFO diff --git a/Cargo.lock b/Cargo.lock index b19c8b5c7..760b0543f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -577,6 +577,19 @@ dependencies = [ "syn 2.0.37", ] +[[package]] +name = "databases-tests" +version = "0.1.0" +dependencies = [ + "axum", + "insta", + "ndc-postgres", + "ndc-test", + "schemars", + "tests-common", + "tokio", +] + [[package]] name = "der" version = "0.7.8" @@ -1837,19 +1850,6 @@ dependencies = [ "num-traits", ] -[[package]] -name = "other-db-tests" -version = "0.1.0" -dependencies = [ - "axum", - "insta", - "ndc-postgres", - "ndc-test", - "schemars", - "tests-common", - "tokio", -] - [[package]] name = "overload" version = "0.1.1" diff --git a/Cargo.toml b/Cargo.toml index 813dbab99..1fd7b7c69 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ members = [ "crates/query-engine/sql", "crates/query-engine/translation", "crates/documentation/openapi", - "crates/tests/other-db-tests", + "crates/tests/databases-tests", "crates/tests/tests-common" ] diff --git a/crates/tests/other-db-tests/Cargo.toml b/crates/tests/databases-tests/Cargo.toml similarity index 97% rename from crates/tests/other-db-tests/Cargo.toml rename to crates/tests/databases-tests/Cargo.toml index 4e704ad4b..6d877fce4 100644 --- a/crates/tests/other-db-tests/Cargo.toml +++ b/crates/tests/databases-tests/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "other-db-tests" +name = "databases-tests" version.workspace = true edition.workspace = true license.workspace = true diff --git a/crates/tests/databases-tests/readme.md b/crates/tests/databases-tests/readme.md new file mode 100644 index 000000000..cef685564 --- /dev/null +++ b/crates/tests/databases-tests/readme.md @@ -0,0 +1,3 @@ +# Databases tests + +These test the PostgreSQL connector against PostgreSQL and various third party database vendors. diff --git a/crates/tests/other-db-tests/src/aurora/common.rs b/crates/tests/databases-tests/src/aurora/common.rs similarity index 100% rename from crates/tests/other-db-tests/src/aurora/common.rs rename to crates/tests/databases-tests/src/aurora/common.rs diff --git a/crates/tests/other-db-tests/src/aurora/mod.rs b/crates/tests/databases-tests/src/aurora/mod.rs similarity index 100% rename from crates/tests/other-db-tests/src/aurora/mod.rs rename to crates/tests/databases-tests/src/aurora/mod.rs diff --git a/crates/tests/other-db-tests/src/aurora/query_tests.rs b/crates/tests/databases-tests/src/aurora/query_tests.rs similarity index 100% rename from crates/tests/other-db-tests/src/aurora/query_tests.rs rename to crates/tests/databases-tests/src/aurora/query_tests.rs diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__aggregation__aggregate_count_albums.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__aggregation__aggregate_count_albums.snap similarity index 80% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__aggregation__aggregate_count_albums.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__aggregation__aggregate_count_albums.snap index 8b39cb223..1bdf42bff 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__aggregation__aggregate_count_albums.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__aggregation__aggregate_count_albums.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__aggregation__aggregate_count_albums_plus_field.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__aggregation__aggregate_count_albums_plus_field.snap similarity index 89% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__aggregation__aggregate_count_albums_plus_field.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__aggregation__aggregate_count_albums_plus_field.snap index 23bec10a5..4f7bed7f0 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__aggregation__aggregate_count_albums_plus_field.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__aggregation__aggregate_count_albums_plus_field.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__aggregation__aggregate_count_artist_albums.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__aggregation__aggregate_count_artist_albums.snap similarity index 92% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__aggregation__aggregate_count_artist_albums.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__aggregation__aggregate_count_artist_albums.snap index aeeec5fe4..6661aa123 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__aggregation__aggregate_count_artist_albums.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__aggregation__aggregate_count_artist_albums.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap similarity index 95% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap index 655e87b96..bdae7f278 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__basic__select_5.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__basic__select_5.snap similarity index 84% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__basic__select_5.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__basic__select_5.snap index d64c93c15..495b7af41 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__basic__select_5.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__basic__select_5.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__basic__select_by_pk.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__basic__select_by_pk.snap similarity index 66% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__basic__select_by_pk.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__basic__select_by_pk.snap index a42a398d5..5fc3237e3 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__basic__select_by_pk.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__basic__select_by_pk.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__basic__select_int_and_string.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__basic__select_int_and_string.snap similarity index 70% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__basic__select_int_and_string.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__basic__select_int_and_string.snap index 53666afbf..1539838f7 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__basic__select_int_and_string.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__basic__select_int_and_string.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__native_queries__select_artist.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__native_queries__select_artist.snap similarity index 83% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__native_queries__select_artist.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__native_queries__select_artist.snap index 4689bb30c..96de271b5 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__native_queries__select_artist.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__native_queries__select_artist.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap similarity index 94% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap index 936745cab..9f100544b 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__native_queries__select_artists_below_id.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__native_queries__select_artists_below_id.snap similarity index 80% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__native_queries__select_artists_below_id.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__native_queries__select_artists_below_id.snap index 0b80e3885..b3c0066b7 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__native_queries__select_artists_below_id.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__native_queries__select_artists_below_id.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__native_queries__select_order_by_artist_album_count.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__native_queries__select_order_by_artist_album_count.snap similarity index 96% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__native_queries__select_order_by_artist_album_count.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__native_queries__select_order_by_artist_album_count.snap index ab29e25d4..7947dce85 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__native_queries__select_order_by_artist_album_count.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__native_queries__select_order_by_artist_album_count.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__native_queries__select_sort_relationship.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__native_queries__select_sort_relationship.snap similarity index 87% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__native_queries__select_sort_relationship.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__native_queries__select_sort_relationship.snap index 8a331f2a0..ce77686b6 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__native_queries__select_sort_relationship.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__native_queries__select_sort_relationship.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__native_queries__select_where_relationship.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__native_queries__select_where_relationship.snap similarity index 86% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__native_queries__select_where_relationship.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__native_queries__select_where_relationship.snap index 1b0bb8c12..9e7a23f92 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__native_queries__select_where_relationship.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__native_queries__select_where_relationship.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_album_id_equals_self.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_album_id_equals_self.snap similarity index 74% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_album_id_equals_self.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_album_id_equals_self.snap index 6eabe1a2f..ab44ce5fe 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_album_id_equals_self.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_album_id_equals_self.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_album_id_greater_than.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_album_id_greater_than.snap similarity index 93% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_album_id_greater_than.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_album_id_greater_than.snap index 43835942e..a6fa9ea85 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_album_id_greater_than.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_album_id_greater_than.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap similarity index 93% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap index 7e61536c4..4e5fe6e41 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_album_id_is_not_null.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_album_id_is_not_null.snap similarity index 86% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_album_id_is_not_null.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_album_id_is_not_null.snap index 50a222629..16f72d9bb 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_album_id_is_not_null.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_album_id_is_not_null.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_album_id_less_than.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_album_id_less_than.snap new file mode 100644 index 000000000..1c9014c4a --- /dev/null +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_album_id_less_than.snap @@ -0,0 +1,9 @@ +--- +source: crates/databases-tests/src/aurora/query_tests.rs +expression: result +--- +[ + { + "rows": [] + } +] diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap similarity index 72% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap index 0989a4945..70ec83104 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_and.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_and.snap similarity index 63% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_and.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_and.snap index 88e5420aa..f5b48fb28 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_and.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_and.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_array_relationship.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_array_relationship.snap similarity index 85% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_array_relationship.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_array_relationship.snap index 0daa1f8e7..52c829267 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_array_relationship.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_array_relationship.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_ilike.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_ilike.snap similarity index 92% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_ilike.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_ilike.snap index 81ed363a6..4aa6be51e 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_ilike.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_ilike.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_in.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_in.snap similarity index 71% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_in.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_in.snap index 639ffe6c2..d69079db7 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_in.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_in.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_iregex.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_iregex.snap similarity index 70% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_iregex.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_iregex.snap index 650a1e429..6ff81caa2 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_iregex.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_iregex.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_like.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_like.snap similarity index 92% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_like.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_like.snap index 81ed363a6..4aa6be51e 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_like.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_like.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_nilike.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_nilike.snap similarity index 85% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_nilike.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_nilike.snap index cc1989e6c..9f80c45b3 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_nilike.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_nilike.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_niregex.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_niregex.snap similarity index 88% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_niregex.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_niregex.snap index 5b76a2090..750e5000f 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_niregex.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_niregex.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_niregex.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_not_in.snap similarity index 88% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_niregex.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_not_in.snap index 5b76a2090..750e5000f 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_niregex.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_not_in.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_not_like.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_not_like.snap similarity index 88% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_not_like.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_not_like.snap index ee152c873..8230b0a27 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_not_like.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_not_like.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_nregex.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_nregex.snap similarity index 93% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_nregex.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_nregex.snap index 67c74ec02..058fe06be 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_nregex.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_nregex.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_iregex.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_regex.snap similarity index 70% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_iregex.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_regex.snap index 650a1e429..6ff81caa2 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_iregex.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_name_regex.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_or.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_or.snap similarity index 70% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_or.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_or.snap index 0aa17925f..67f383046 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_or.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_or.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_related_exists.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_related_exists.snap similarity index 85% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_related_exists.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_related_exists.snap index 0daa1f8e7..52c829267 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_related_exists.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_related_exists.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_unrelated_exists.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_unrelated_exists.snap similarity index 82% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_unrelated_exists.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_unrelated_exists.snap index 5936d702b..c4ec66127 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_unrelated_exists.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_unrelated_exists.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_variable.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_variable.snap similarity index 81% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_variable.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_variable.snap index 28ff66b40..d63982c23 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_variable.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_variable.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_variable_int.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_variable_int.snap similarity index 81% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_variable_int.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_variable_int.snap index 8bbde713a..d67df6027 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_variable_int.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__predicates__select_where_variable_int.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__relationships__dup_array_relationship.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__relationships__dup_array_relationship.snap similarity index 95% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__relationships__dup_array_relationship.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__relationships__dup_array_relationship.snap index 443b9e97b..200d7e6f7 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__relationships__dup_array_relationship.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__relationships__dup_array_relationship.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__relationships__nested_array_relationships.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__relationships__nested_array_relationships.snap similarity index 97% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__relationships__nested_array_relationships.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__relationships__nested_array_relationships.snap index bf0931ca6..8382357d5 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__relationships__nested_array_relationships.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__relationships__nested_array_relationships.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__relationships__nested_object_relationships.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__relationships__nested_object_relationships.snap similarity index 96% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__relationships__nested_object_relationships.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__relationships__nested_object_relationships.snap index 7ca113f1d..9aa181720 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__relationships__nested_object_relationships.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__relationships__nested_object_relationships.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__relationships__select_album_object_relationship_to_artist.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__relationships__select_album_object_relationship_to_artist.snap similarity index 93% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__relationships__select_album_object_relationship_to_artist.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__relationships__select_album_object_relationship_to_artist.snap index d0cafaea1..19f223f95 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__relationships__select_album_object_relationship_to_artist.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__relationships__select_album_object_relationship_to_artist.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__relationships__select_artist_array_relationship_to_album.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__relationships__select_artist_array_relationship_to_album.snap similarity index 94% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__relationships__select_artist_array_relationship_to_album.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__relationships__select_artist_array_relationship_to_album.snap index 885dc96c7..9caac37ad 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__relationships__select_artist_array_relationship_to_album.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__relationships__select_artist_array_relationship_to_album.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__relationships__very_nested_recursive_relationship.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__relationships__very_nested_recursive_relationship.snap similarity index 98% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__relationships__very_nested_recursive_relationship.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__relationships__very_nested_recursive_relationship.snap index 3a7aeb486..fa443b48b 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__relationships__very_nested_recursive_relationship.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__relationships__very_nested_recursive_relationship.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__select_order_by_album_artist_name.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__select_order_by_album_artist_name.snap similarity index 87% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__select_order_by_album_artist_name.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__select_order_by_album_artist_name.snap index 7bc039256..564a19b23 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__select_order_by_album_artist_name.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__select_order_by_album_artist_name.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__select_order_by_artist_album_count_agg.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__select_order_by_artist_album_count.snap similarity index 77% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__select_order_by_artist_album_count_agg.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__select_order_by_artist_album_count.snap index 47bd734c8..3c1f6acf7 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__select_order_by_artist_album_count_agg.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__select_order_by_artist_album_count.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__select_order_by_artist_album_count.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__select_order_by_artist_album_count_agg.snap similarity index 77% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__select_order_by_artist_album_count.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__select_order_by_artist_album_count_agg.snap index 47bd734c8..3c1f6acf7 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__select_order_by_artist_album_count.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__select_order_by_artist_album_count_agg.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__select_order_by_artist_name.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__select_order_by_artist_name.snap similarity index 86% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__select_order_by_artist_name.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__select_order_by_artist_name.snap index 49af1561c..8fe95e1e5 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__select_order_by_artist_name.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__select_order_by_artist_name.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__select_order_by_artist_name_with_name.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__select_order_by_artist_name_with_name.snap similarity index 95% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__select_order_by_artist_name_with_name.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__select_order_by_artist_name_with_name.snap index 96570b7f2..d5e4ceca5 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__select_order_by_artist_name_with_name.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__select_order_by_artist_name_with_name.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__select_order_by_name.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__select_order_by_name.snap similarity index 85% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__select_order_by_name.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__select_order_by_name.snap index 411ba3f3d..4c8a02848 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__select_order_by_name.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__select_order_by_name.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap similarity index 85% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap index 9bbd7eab5..9871225bf 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate.snap similarity index 70% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate.snap index be73a5bb0..7f7d005cc 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate_exists.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate_exists.snap similarity index 83% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate_exists.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate_exists.snap index 3d6d2eb69..89db89767 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate_exists.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate_exists.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap similarity index 81% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap index 8650ece80..80e5c1fa1 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__types__select_value_types.snap b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__types__select_value_types.snap similarity index 90% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__types__select_value_types.snap rename to crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__types__select_value_types.snap index 1a98e8849..c6b6da209 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__types__select_value_types.snap +++ b/crates/tests/databases-tests/src/aurora/snapshots/databases_tests__aurora__query_tests__types__select_value_types.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/capabilities_tests.rs b/crates/tests/databases-tests/src/capabilities_tests.rs similarity index 100% rename from crates/tests/other-db-tests/src/capabilities_tests.rs rename to crates/tests/databases-tests/src/capabilities_tests.rs diff --git a/crates/tests/other-db-tests/src/citus/common.rs b/crates/tests/databases-tests/src/citus/common.rs similarity index 100% rename from crates/tests/other-db-tests/src/citus/common.rs rename to crates/tests/databases-tests/src/citus/common.rs diff --git a/crates/tests/other-db-tests/src/citus/configuration_tests.rs b/crates/tests/databases-tests/src/citus/configuration_tests.rs similarity index 100% rename from crates/tests/other-db-tests/src/citus/configuration_tests.rs rename to crates/tests/databases-tests/src/citus/configuration_tests.rs diff --git a/crates/tests/other-db-tests/src/citus/explain_tests.rs b/crates/tests/databases-tests/src/citus/explain_tests.rs similarity index 100% rename from crates/tests/other-db-tests/src/citus/explain_tests.rs rename to crates/tests/databases-tests/src/citus/explain_tests.rs diff --git a/crates/tests/other-db-tests/src/citus/mod.rs b/crates/tests/databases-tests/src/citus/mod.rs similarity index 100% rename from crates/tests/other-db-tests/src/citus/mod.rs rename to crates/tests/databases-tests/src/citus/mod.rs diff --git a/crates/tests/other-db-tests/src/citus/ndc_tests.rs b/crates/tests/databases-tests/src/citus/ndc_tests.rs similarity index 100% rename from crates/tests/other-db-tests/src/citus/ndc_tests.rs rename to crates/tests/databases-tests/src/citus/ndc_tests.rs diff --git a/crates/tests/other-db-tests/src/citus/query_tests.rs b/crates/tests/databases-tests/src/citus/query_tests.rs similarity index 100% rename from crates/tests/other-db-tests/src/citus/query_tests.rs rename to crates/tests/databases-tests/src/citus/query_tests.rs diff --git a/crates/tests/other-db-tests/src/citus/schema_tests.rs b/crates/tests/databases-tests/src/citus/schema_tests.rs similarity index 100% rename from crates/tests/other-db-tests/src/citus/schema_tests.rs rename to crates/tests/databases-tests/src/citus/schema_tests.rs diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__explain_tests__explain__select_by_pk.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__explain_tests__explain__select_by_pk.snap similarity index 88% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__explain_tests__explain__select_by_pk.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__explain_tests__explain__select_by_pk.snap index 8f1a541b2..019458868 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__explain_tests__explain__select_by_pk.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__explain_tests__explain__select_by_pk.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/explain_tests.rs +source: crates/tests/databases-tests/src/citus/explain_tests.rs expression: result.details.query --- EXPLAIN diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__explain_tests__select_where_name_nilike.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__explain_tests__explain__select_where_name_nilike.snap similarity index 90% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__explain_tests__select_where_name_nilike.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__explain_tests__explain__select_where_name_nilike.snap index 692bd748c..4d3f99dee 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__explain_tests__select_where_name_nilike.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__explain_tests__explain__select_where_name_nilike.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/explain_tests.rs +source: crates/tests/databases-tests/src/citus/explain_tests.rs expression: result.details.query --- EXPLAIN diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__explain_tests__explain__select_where_variable.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__explain_tests__explain__select_where_variable.snap similarity index 90% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__explain_tests__explain__select_where_variable.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__explain_tests__explain__select_where_variable.snap index eb83e6efc..d3f082458 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__explain_tests__explain__select_where_variable.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__explain_tests__explain__select_where_variable.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/explain_tests.rs +source: crates/tests/databases-tests/src/citus/explain_tests.rs expression: result.details.query --- EXPLAIN diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__explain_tests__select_by_pk.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__explain_tests__select_by_pk.snap similarity index 88% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__explain_tests__select_by_pk.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__explain_tests__select_by_pk.snap index 8f1a541b2..019458868 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__explain_tests__select_by_pk.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__explain_tests__select_by_pk.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/explain_tests.rs +source: crates/tests/databases-tests/src/citus/explain_tests.rs expression: result.details.query --- EXPLAIN diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__explain_tests__explain__select_where_name_nilike.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__explain_tests__select_where_name_nilike.snap similarity index 90% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__explain_tests__explain__select_where_name_nilike.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__explain_tests__select_where_name_nilike.snap index 692bd748c..4d3f99dee 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__explain_tests__explain__select_where_name_nilike.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__explain_tests__select_where_name_nilike.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/explain_tests.rs +source: crates/tests/databases-tests/src/citus/explain_tests.rs expression: result.details.query --- EXPLAIN diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__explain_tests__select_where_variable.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__explain_tests__select_where_variable.snap similarity index 90% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__explain_tests__select_where_variable.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__explain_tests__select_where_variable.snap index eb83e6efc..d3f082458 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__explain_tests__select_where_variable.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__explain_tests__select_where_variable.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/explain_tests.rs +source: crates/tests/databases-tests/src/citus/explain_tests.rs expression: result.details.query --- EXPLAIN diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__aggregation__aggregate_count_albums.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__aggregation__aggregate_count_albums.snap similarity index 81% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__aggregation__aggregate_count_albums.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__aggregation__aggregate_count_albums.snap index 517bd87b9..b472171dc 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__aggregation__aggregate_count_albums.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__aggregation__aggregate_count_albums.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__aggregation__aggregate_count_albums_plus_field.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__aggregation__aggregate_count_albums_plus_field.snap similarity index 89% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__aggregation__aggregate_count_albums_plus_field.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__aggregation__aggregate_count_albums_plus_field.snap index b5e31bb39..211b27ba9 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__aggregation__aggregate_count_albums_plus_field.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__aggregation__aggregate_count_albums_plus_field.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__aggregation__aggregate_count_artist_albums.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__aggregation__aggregate_count_artist_albums.snap similarity index 92% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__aggregation__aggregate_count_artist_albums.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__aggregation__aggregate_count_artist_albums.snap index e27e12ba0..3beda9bd0 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__aggregation__aggregate_count_artist_albums.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__aggregation__aggregate_count_artist_albums.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap similarity index 95% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap index 655e87b96..c75416a80 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__basic__select_5.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__basic__select_5.snap similarity index 83% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__basic__select_5.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__basic__select_5.snap index f4e75581a..bd046d441 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__basic__select_5.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__basic__select_5.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__basic__select_by_pk.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__basic__select_by_pk.snap similarity index 64% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__basic__select_by_pk.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__basic__select_by_pk.snap index 9b0e96e93..1f940e111 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__basic__select_by_pk.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__basic__select_by_pk.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__basic__select_int_and_string.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__basic__select_int_and_string.snap similarity index 69% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__basic__select_int_and_string.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__basic__select_int_and_string.snap index c4081041e..bb5120ac1 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__basic__select_int_and_string.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__basic__select_int_and_string.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__native_queries__select_artist.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__native_queries__select_artist.snap similarity index 82% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__native_queries__select_artist.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__native_queries__select_artist.snap index f5a641fbf..150017070 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__native_queries__select_artist.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__native_queries__select_artist.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap similarity index 94% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap index c1df1a671..ce8501a8a 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__native_queries__select_artists_below_id.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__native_queries__select_artists_below_id.snap similarity index 79% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__native_queries__select_artists_below_id.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__native_queries__select_artists_below_id.snap index 063a55164..e215fae47 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__native_queries__select_artists_below_id.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__native_queries__select_artists_below_id.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__native_queries__select_order_by_artist_album_count.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__native_queries__select_order_by_artist_album_count.snap similarity index 96% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__native_queries__select_order_by_artist_album_count.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__native_queries__select_order_by_artist_album_count.snap index ab29e25d4..bb358513f 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__native_queries__select_order_by_artist_album_count.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__native_queries__select_order_by_artist_album_count.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__native_queries__select_sort_relationship.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__native_queries__select_sort_relationship.snap similarity index 88% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__native_queries__select_sort_relationship.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__native_queries__select_sort_relationship.snap index b81565177..29aaaa711 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__native_queries__select_sort_relationship.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__native_queries__select_sort_relationship.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__native_queries__select_where_relationship.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__native_queries__select_where_relationship.snap similarity index 86% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__native_queries__select_where_relationship.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__native_queries__select_where_relationship.snap index 183886251..d018fdc00 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__native_queries__select_where_relationship.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__native_queries__select_where_relationship.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_album_id_equals_self.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_album_id_equals_self.snap similarity index 72% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_album_id_equals_self.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_album_id_equals_self.snap index 9a4e8815f..ba7a80477 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_album_id_equals_self.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_album_id_equals_self.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_album_id_greater_than.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_album_id_greater_than.snap similarity index 92% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_album_id_greater_than.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_album_id_greater_than.snap index 3fb56ac52..9eb95c0c9 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_album_id_greater_than.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_album_id_greater_than.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap similarity index 93% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap index 667c8d6b4..b5239eda7 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_album_id_is_not_null.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_album_id_is_not_null.snap similarity index 84% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_album_id_is_not_null.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_album_id_is_not_null.snap index c0da7d244..935cdc15b 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_album_id_is_not_null.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_album_id_is_not_null.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_album_id_less_than.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_album_id_less_than.snap new file mode 100644 index 000000000..7c9c9c44f --- /dev/null +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_album_id_less_than.snap @@ -0,0 +1,9 @@ +--- +source: crates/tests/databases-tests/src/citus/query_tests.rs +expression: result +--- +[ + { + "rows": [] + } +] diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap similarity index 71% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap index 927eab5e2..c3c93d7a0 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_and.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_and.snap similarity index 63% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_and.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_and.snap index 88e5420aa..88fea379c 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_and.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_and.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_array_relationship.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_array_relationship.snap similarity index 85% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_array_relationship.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_array_relationship.snap index 3d0d33a69..4a445776a 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_array_relationship.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_array_relationship.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_ilike.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_ilike.snap similarity index 91% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_ilike.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_ilike.snap index 20f3d7485..a736aef96 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_ilike.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_ilike.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_in.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_in.snap similarity index 69% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_in.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_in.snap index d540ca178..059a68474 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_in.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_in.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_iregex.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_iregex.snap similarity index 68% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_iregex.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_iregex.snap index 6d6548d13..5475955d4 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_iregex.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_iregex.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_like.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_like.snap similarity index 91% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_like.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_like.snap index 20f3d7485..a736aef96 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_like.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_like.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_nilike.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_nilike.snap similarity index 84% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_nilike.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_nilike.snap index 11e1553f7..7f36b9e8a 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_nilike.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_nilike.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_not_in.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_niregex.snap similarity index 87% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_not_in.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_niregex.snap index 1a7cd211b..0ba3212d0 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_not_in.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_niregex.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_niregex.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_not_in.snap similarity index 87% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_niregex.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_not_in.snap index 1a7cd211b..0ba3212d0 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_niregex.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_not_in.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_not_like.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_not_like.snap similarity index 87% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_not_like.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_not_like.snap index 77b33ad65..0664fddbb 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_not_like.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_not_like.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_nregex.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_nregex.snap similarity index 92% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_nregex.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_nregex.snap index ace70d9a3..78faadd40 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_nregex.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_nregex.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_regex.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_regex.snap similarity index 68% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_regex.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_regex.snap index 6d6548d13..5475955d4 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_name_regex.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_name_regex.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_or.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_or.snap similarity index 70% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_or.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_or.snap index 0aa17925f..22972d842 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_or.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_or.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_related_exists.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_related_exists.snap similarity index 85% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_related_exists.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_related_exists.snap index 3d0d33a69..4a445776a 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_related_exists.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_related_exists.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_unrelated_exists.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_unrelated_exists.snap similarity index 80% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_unrelated_exists.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_unrelated_exists.snap index 416d676cf..8ccc1bb9e 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_unrelated_exists.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_unrelated_exists.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_variable.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_variable.snap similarity index 80% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_variable.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_variable.snap index 2f981d18a..559acfdbf 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_variable.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_variable.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_variable_int.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_variable_int.snap similarity index 81% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_variable_int.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_variable_int.snap index 36aaba99a..29c18e7cf 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_variable_int.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__predicates__select_where_variable_int.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__relationships__dup_array_relationship.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__relationships__dup_array_relationship.snap similarity index 95% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__relationships__dup_array_relationship.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__relationships__dup_array_relationship.snap index f46b20d05..941cfc708 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__relationships__dup_array_relationship.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__relationships__dup_array_relationship.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__relationships__nested_array_relationships.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__relationships__nested_array_relationships.snap similarity index 97% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__relationships__nested_array_relationships.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__relationships__nested_array_relationships.snap index d723224ba..7742e20db 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__relationships__nested_array_relationships.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__relationships__nested_array_relationships.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__relationships__nested_object_relationships.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__relationships__nested_object_relationships.snap similarity index 96% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__relationships__nested_object_relationships.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__relationships__nested_object_relationships.snap index 7ca113f1d..77c1a90d6 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__relationships__nested_object_relationships.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__relationships__nested_object_relationships.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__relationships__select_album_object_relationship_to_artist.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__relationships__select_album_object_relationship_to_artist.snap similarity index 93% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__relationships__select_album_object_relationship_to_artist.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__relationships__select_album_object_relationship_to_artist.snap index d0cafaea1..8debe9851 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__relationships__select_album_object_relationship_to_artist.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__relationships__select_album_object_relationship_to_artist.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__relationships__select_artist_array_relationship_to_album.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__relationships__select_artist_array_relationship_to_album.snap similarity index 95% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__relationships__select_artist_array_relationship_to_album.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__relationships__select_artist_array_relationship_to_album.snap index 9db075345..6117a2faa 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__relationships__select_artist_array_relationship_to_album.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__relationships__select_artist_array_relationship_to_album.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__relationships__very_nested_recursive_relationship.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__relationships__very_nested_recursive_relationship.snap similarity index 98% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__relationships__very_nested_recursive_relationship.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__relationships__very_nested_recursive_relationship.snap index 3a7aeb486..c0b6828ff 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__relationships__very_nested_recursive_relationship.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__relationships__very_nested_recursive_relationship.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__select_order_by_album_artist_name.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__select_order_by_album_artist_name.snap similarity index 86% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__select_order_by_album_artist_name.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__select_order_by_album_artist_name.snap index 0aec065de..36d4094e2 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__select_order_by_album_artist_name.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__select_order_by_album_artist_name.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__select_order_by_artist_album_count.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__select_order_by_artist_album_count.snap similarity index 76% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__select_order_by_artist_album_count.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__select_order_by_artist_album_count.snap index 87f31a3a0..947c53ec0 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__select_order_by_artist_album_count.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__select_order_by_artist_album_count.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__select_order_by_artist_album_count_agg.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__select_order_by_artist_album_count_agg.snap similarity index 76% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__select_order_by_artist_album_count_agg.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__select_order_by_artist_album_count_agg.snap index 87f31a3a0..947c53ec0 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__select_order_by_artist_album_count_agg.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__select_order_by_artist_album_count_agg.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__select_order_by_artist_name.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__select_order_by_artist_name.snap similarity index 85% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__select_order_by_artist_name.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__select_order_by_artist_name.snap index 95f658032..971bc498f 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__select_order_by_artist_name.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__select_order_by_artist_name.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__select_order_by_artist_name_with_name.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__select_order_by_artist_name_with_name.snap similarity index 95% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__select_order_by_artist_name_with_name.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__select_order_by_artist_name_with_name.snap index 5150bbd53..d3b86f859 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__select_order_by_artist_name_with_name.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__select_order_by_artist_name_with_name.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__select_order_by_name.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__select_order_by_name.snap similarity index 84% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__select_order_by_name.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__select_order_by_name.snap index 9fb279bb6..f4139b199 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__select_order_by_name.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__select_order_by_name.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap similarity index 84% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap index 814fcafe4..6af9918ac 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate.snap similarity index 71% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate.snap index 669d8544a..b3233feb5 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate_exists.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate_exists.snap similarity index 83% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate_exists.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate_exists.snap index a870e4efd..2228ed762 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate_exists.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate_exists.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap similarity index 82% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap index ac88d52bc..cb6f228cf 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__types__select_value_types.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__types__select_value_types.snap similarity index 90% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__types__select_value_types.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__types__select_value_types.snap index 0a7d6a721..afc32602a 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__types__select_value_types.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__query_tests__types__select_value_types.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/citus/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__schema_tests__schema_test__get_schema.snap b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__schema_tests__schema_test__get_schema.snap similarity index 99% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__schema_tests__schema_test__get_schema.snap rename to crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__schema_tests__schema_test__get_schema.snap index 6ae83157d..0dcb2cbd6 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__schema_tests__schema_test__get_schema.snap +++ b/crates/tests/databases-tests/src/citus/snapshots/databases_tests__citus__schema_tests__schema_test__get_schema.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/schema_tests.rs +source: crates/tests/databases-tests/src/citus/schema_tests.rs expression: result --- { diff --git a/crates/tests/other-db-tests/src/cockroach/common.rs b/crates/tests/databases-tests/src/cockroach/common.rs similarity index 100% rename from crates/tests/other-db-tests/src/cockroach/common.rs rename to crates/tests/databases-tests/src/cockroach/common.rs diff --git a/crates/tests/other-db-tests/src/cockroach/configuration_tests.rs b/crates/tests/databases-tests/src/cockroach/configuration_tests.rs similarity index 100% rename from crates/tests/other-db-tests/src/cockroach/configuration_tests.rs rename to crates/tests/databases-tests/src/cockroach/configuration_tests.rs diff --git a/crates/tests/other-db-tests/src/cockroach/explain_tests.rs b/crates/tests/databases-tests/src/cockroach/explain_tests.rs similarity index 100% rename from crates/tests/other-db-tests/src/cockroach/explain_tests.rs rename to crates/tests/databases-tests/src/cockroach/explain_tests.rs diff --git a/crates/tests/other-db-tests/src/cockroach/mod.rs b/crates/tests/databases-tests/src/cockroach/mod.rs similarity index 100% rename from crates/tests/other-db-tests/src/cockroach/mod.rs rename to crates/tests/databases-tests/src/cockroach/mod.rs diff --git a/crates/tests/other-db-tests/src/cockroach/ndc_tests.rs b/crates/tests/databases-tests/src/cockroach/ndc_tests.rs similarity index 100% rename from crates/tests/other-db-tests/src/cockroach/ndc_tests.rs rename to crates/tests/databases-tests/src/cockroach/ndc_tests.rs diff --git a/crates/tests/other-db-tests/src/cockroach/query_tests.rs b/crates/tests/databases-tests/src/cockroach/query_tests.rs similarity index 100% rename from crates/tests/other-db-tests/src/cockroach/query_tests.rs rename to crates/tests/databases-tests/src/cockroach/query_tests.rs diff --git a/crates/tests/other-db-tests/src/cockroach/schema_tests.rs b/crates/tests/databases-tests/src/cockroach/schema_tests.rs similarity index 100% rename from crates/tests/other-db-tests/src/cockroach/schema_tests.rs rename to crates/tests/databases-tests/src/cockroach/schema_tests.rs diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__explain_tests__explain__select_by_pk.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__explain_tests__explain__select_by_pk.snap similarity index 88% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__explain_tests__explain__select_by_pk.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__explain_tests__explain__select_by_pk.snap index 01be958c3..ed88487b9 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__explain_tests__explain__select_by_pk.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__explain_tests__explain__select_by_pk.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/explain_tests.rs +source: crates/tests/databases-tests/src/cockroach/explain_tests.rs expression: result.details.query --- EXPLAIN diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__explain_tests__explain__select_where_name_nilike.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__explain_tests__explain__select_where_name_nilike.snap similarity index 90% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__explain_tests__explain__select_where_name_nilike.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__explain_tests__explain__select_where_name_nilike.snap index 8afd43680..e94bb409b 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__explain_tests__explain__select_where_name_nilike.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__explain_tests__explain__select_where_name_nilike.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/explain_tests.rs +source: crates/tests/databases-tests/src/cockroach/explain_tests.rs expression: result.details.query --- EXPLAIN diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__explain_tests__explain__select_where_variable.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__explain_tests__explain__select_where_variable.snap similarity index 89% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__explain_tests__explain__select_where_variable.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__explain_tests__explain__select_where_variable.snap index d497aeeb3..f68f0f979 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__explain_tests__explain__select_where_variable.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__explain_tests__explain__select_where_variable.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/explain_tests.rs +source: crates/tests/databases-tests/src/cockroach/explain_tests.rs expression: result.details.query --- EXPLAIN diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__aggregation__aggregate_count_albums.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__aggregation__aggregate_count_albums.snap similarity index 80% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__aggregation__aggregate_count_albums.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__aggregation__aggregate_count_albums.snap index 6ca7b2fa8..2cffa9e41 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__aggregation__aggregate_count_albums.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__aggregation__aggregate_count_albums.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__aggregation__aggregate_count_albums_plus_field.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__aggregation__aggregate_count_albums_plus_field.snap similarity index 89% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__aggregation__aggregate_count_albums_plus_field.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__aggregation__aggregate_count_albums_plus_field.snap index 6b9a56eb8..ecf48702c 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__aggregation__aggregate_count_albums_plus_field.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__aggregation__aggregate_count_albums_plus_field.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__aggregation__aggregate_count_artist_albums.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__aggregation__aggregate_count_artist_albums.snap similarity index 92% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__aggregation__aggregate_count_artist_albums.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__aggregation__aggregate_count_artist_albums.snap index f4b30ff0a..aec9fe09a 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__aggregation__aggregate_count_artist_albums.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__aggregation__aggregate_count_artist_albums.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap similarity index 95% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap index 2e24ae748..1169b3b5f 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__basic__select_5.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__basic__select_5.snap similarity index 82% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__basic__select_5.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__basic__select_5.snap index a2f29e510..789a78975 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__basic__select_5.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__basic__select_5.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__basic__select_by_pk.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__basic__select_by_pk.snap similarity index 63% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__basic__select_by_pk.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__basic__select_by_pk.snap index 4c6c8a11e..c3aca5cbe 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__basic__select_by_pk.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__basic__select_by_pk.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__basic__select_int_and_string.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__basic__select_int_and_string.snap similarity index 67% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__basic__select_int_and_string.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__basic__select_int_and_string.snap index 7706f6309..eaf1c5274 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__basic__select_int_and_string.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__basic__select_int_and_string.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__native_queries__select_artist.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__native_queries__select_artist.snap similarity index 81% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__native_queries__select_artist.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__native_queries__select_artist.snap index 272e37528..4f23ba4c7 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__native_queries__select_artist.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__native_queries__select_artist.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap similarity index 94% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap index 59fff1340..b125beed9 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__native_queries__select_artists_below_id.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__native_queries__select_artists_below_id.snap similarity index 78% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__native_queries__select_artists_below_id.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__native_queries__select_artists_below_id.snap index 8318d26f1..b14e18aaa 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__native_queries__select_artists_below_id.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__native_queries__select_artists_below_id.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__native_queries__select_order_by_artist_album_count.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__native_queries__select_order_by_artist_album_count.snap similarity index 96% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__native_queries__select_order_by_artist_album_count.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__native_queries__select_order_by_artist_album_count.snap index f684f8072..4274dd2de 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__native_queries__select_order_by_artist_album_count.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__native_queries__select_order_by_artist_album_count.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__native_queries__select_sort_relationship.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__native_queries__select_sort_relationship.snap similarity index 87% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__native_queries__select_sort_relationship.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__native_queries__select_sort_relationship.snap index 7c0932a40..bd8ef06d7 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__native_queries__select_sort_relationship.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__native_queries__select_sort_relationship.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__native_queries__select_where_relationship.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__native_queries__select_where_relationship.snap similarity index 85% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__native_queries__select_where_relationship.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__native_queries__select_where_relationship.snap index 0738f07bf..31f7f2e6c 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__native_queries__select_where_relationship.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__native_queries__select_where_relationship.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_album_id_equals_self.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_album_id_equals_self.snap similarity index 71% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_album_id_equals_self.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_album_id_equals_self.snap index 7c351ff27..e55338e53 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_album_id_equals_self.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_album_id_equals_self.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_album_id_greater_than.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_album_id_greater_than.snap similarity index 92% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_album_id_greater_than.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_album_id_greater_than.snap index 637a44ff9..d4d44ea02 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_album_id_greater_than.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_album_id_greater_than.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap similarity index 93% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap index 27f67a9f5..4be116577 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_album_id_is_not_null.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_album_id_is_not_null.snap similarity index 84% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_album_id_is_not_null.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_album_id_is_not_null.snap index 0d3ab1586..03708b503 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_album_id_is_not_null.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_album_id_is_not_null.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_album_id_less_than.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_album_id_less_than.snap new file mode 100644 index 000000000..954d0b237 --- /dev/null +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_album_id_less_than.snap @@ -0,0 +1,9 @@ +--- +source: crates/tests/databases-tests/src/cockroach/query_tests.rs +expression: result +--- +[ + { + "rows": [] + } +] diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap similarity index 70% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap index 784a1689e..083048e33 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_and.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_and.snap similarity index 62% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_and.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_and.snap index 89824c66c..41beec99a 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_and.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_and.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_array_relationship.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_array_relationship.snap similarity index 85% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_array_relationship.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_array_relationship.snap index 30543f619..a2790d813 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_array_relationship.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_array_relationship.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_ilike.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_ilike.snap new file mode 100644 index 000000000..44d49e59c --- /dev/null +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_ilike.snap @@ -0,0 +1,38 @@ +--- +source: crates/tests/databases-tests/src/cockroach/query_tests.rs +expression: result +--- +[ + { + "rows": [ + { + "AlbumId": 1, + "Title": "For Those About To Rock We Salute You" + }, + { + "AlbumId": 4, + "Title": "Let There Be Rock" + }, + { + "AlbumId": 59, + "Title": "Deep Purple In Rock" + }, + { + "AlbumId": 108, + "Title": "Rock In Rio [CD1]" + }, + { + "AlbumId": 109, + "Title": "Rock In Rio [CD2]" + }, + { + "AlbumId": 213, + "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" + }, + { + "AlbumId": 216, + "Title": "Hot Rocks, 1964-1971 (Disc 1)" + } + ] + } +] diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_in.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_in.snap similarity index 67% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_in.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_in.snap index 409b12d17..99d7e07de 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_in.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_in.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_iregex.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_iregex.snap new file mode 100644 index 000000000..89f65b410 --- /dev/null +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_iregex.snap @@ -0,0 +1,14 @@ +--- +source: crates/tests/databases-tests/src/cockroach/query_tests.rs +expression: result +--- +[ + { + "rows": [ + { + "AlbumId": 6, + "Title": "Jagged Little Pill" + } + ] + } +] diff --git a/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_like.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_like.snap new file mode 100644 index 000000000..44d49e59c --- /dev/null +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_like.snap @@ -0,0 +1,38 @@ +--- +source: crates/tests/databases-tests/src/cockroach/query_tests.rs +expression: result +--- +[ + { + "rows": [ + { + "AlbumId": 1, + "Title": "For Those About To Rock We Salute You" + }, + { + "AlbumId": 4, + "Title": "Let There Be Rock" + }, + { + "AlbumId": 59, + "Title": "Deep Purple In Rock" + }, + { + "AlbumId": 108, + "Title": "Rock In Rio [CD1]" + }, + { + "AlbumId": 109, + "Title": "Rock In Rio [CD2]" + }, + { + "AlbumId": 213, + "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" + }, + { + "AlbumId": 216, + "Title": "Hot Rocks, 1964-1971 (Disc 1)" + } + ] + } +] diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_nilike.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_nilike.snap similarity index 83% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_nilike.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_nilike.snap index a65e9de1b..e7d456be9 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_nilike.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_nilike.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_niregex.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_niregex.snap new file mode 100644 index 000000000..f6b90784a --- /dev/null +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_niregex.snap @@ -0,0 +1,30 @@ +--- +source: crates/tests/databases-tests/src/cockroach/query_tests.rs +expression: result +--- +[ + { + "rows": [ + { + "AlbumId": 1, + "Title": "For Those About To Rock We Salute You" + }, + { + "AlbumId": 2, + "Title": "Balls to the Wall" + }, + { + "AlbumId": 3, + "Title": "Restless and Wild" + }, + { + "AlbumId": 4, + "Title": "Let There Be Rock" + }, + { + "AlbumId": 5, + "Title": "Big Ones" + } + ] + } +] diff --git a/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_not_in.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_not_in.snap new file mode 100644 index 000000000..f6b90784a --- /dev/null +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_not_in.snap @@ -0,0 +1,30 @@ +--- +source: crates/tests/databases-tests/src/cockroach/query_tests.rs +expression: result +--- +[ + { + "rows": [ + { + "AlbumId": 1, + "Title": "For Those About To Rock We Salute You" + }, + { + "AlbumId": 2, + "Title": "Balls to the Wall" + }, + { + "AlbumId": 3, + "Title": "Restless and Wild" + }, + { + "AlbumId": 4, + "Title": "Let There Be Rock" + }, + { + "AlbumId": 5, + "Title": "Big Ones" + } + ] + } +] diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_not_like.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_not_like.snap similarity index 86% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_not_like.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_not_like.snap index 768d45a6e..a941af127 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_not_like.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_not_like.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_nregex.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_nregex.snap similarity index 92% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_nregex.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_nregex.snap index eb72177eb..a73632c50 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_nregex.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_nregex.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_nsimilar.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_nsimilar.snap similarity index 87% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_nsimilar.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_nsimilar.snap index a17a97a26..882d56f64 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_nsimilar.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_nsimilar.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_regex.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_regex.snap new file mode 100644 index 000000000..89f65b410 --- /dev/null +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_regex.snap @@ -0,0 +1,14 @@ +--- +source: crates/tests/databases-tests/src/cockroach/query_tests.rs +expression: result +--- +[ + { + "rows": [ + { + "AlbumId": 6, + "Title": "Jagged Little Pill" + } + ] + } +] diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_similar.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_similar.snap similarity index 86% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_similar.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_similar.snap index 7a21a5aa5..ff1f1e282 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_similar.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_name_similar.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_or.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_or.snap similarity index 69% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_or.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_or.snap index 65192fd43..f691ef47a 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_or.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_or.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_related_exists.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_related_exists.snap similarity index 85% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_related_exists.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_related_exists.snap index 30543f619..a2790d813 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_related_exists.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_related_exists.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_unrelated_exists.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_unrelated_exists.snap similarity index 80% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_unrelated_exists.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_unrelated_exists.snap index 07f6183f3..aa1413e4c 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_unrelated_exists.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_unrelated_exists.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_variable.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_variable.snap similarity index 79% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_variable.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_variable.snap index db50d7706..8c1228aac 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_variable.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_variable.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_variable_int.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_variable_int.snap new file mode 100644 index 000000000..25f2ec11c --- /dev/null +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__predicates__select_where_variable_int.snap @@ -0,0 +1,25 @@ +--- +source: crates/tests/databases-tests/src/cockroach/query_tests.rs +expression: result +--- +[ + { + "rows": [ + { + "AlbumId": 35, + "Title": "Garage Inc. (Disc 1)" + } + ] + }, + { + "rows": [ + { + "AlbumId": 222, + "Title": "Serie Sem Limite (Disc 1)" + } + ] + }, + { + "rows": [] + } +] diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__relationships__dup_array_relationship.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__relationships__dup_array_relationship.snap similarity index 94% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__relationships__dup_array_relationship.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__relationships__dup_array_relationship.snap index b380c9f7d..b47836d26 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__relationships__dup_array_relationship.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__relationships__dup_array_relationship.snap @@ -1,12 +1,12 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ { "rows": [ { - "albums": { + "Albums": { "rows": [ { "title": "For Those About To Rock We Salute You" @@ -16,7 +16,7 @@ expression: result } ] }, - "Albums": { + "albums": { "rows": [ { "title": "For Those About To Rock We Salute You" @@ -28,7 +28,7 @@ expression: result } }, { - "albums": { + "Albums": { "rows": [ { "title": "Balls to the Wall" @@ -38,7 +38,7 @@ expression: result } ] }, - "Albums": { + "albums": { "rows": [ { "title": "Balls to the Wall" @@ -50,14 +50,14 @@ expression: result } }, { - "albums": { + "Albums": { "rows": [ { "title": "Big Ones" } ] }, - "Albums": { + "albums": { "rows": [ { "title": "Big Ones" diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__relationships__nested_array_relationships.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__relationships__nested_array_relationships.snap similarity index 97% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__relationships__nested_array_relationships.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__relationships__nested_array_relationships.snap index d81d45eb6..042e6571d 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__relationships__nested_array_relationships.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__relationships__nested_array_relationships.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__relationships__nested_object_relationships.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__relationships__nested_object_relationships.snap similarity index 96% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__relationships__nested_object_relationships.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__relationships__nested_object_relationships.snap index 45992b98f..1328b9769 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__relationships__nested_object_relationships.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__relationships__nested_object_relationships.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__relationships__select_album_object_relationship_to_artist.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__relationships__select_album_object_relationship_to_artist.snap similarity index 93% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__relationships__select_album_object_relationship_to_artist.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__relationships__select_album_object_relationship_to_artist.snap index 1abae945a..1d7e5446d 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__relationships__select_album_object_relationship_to_artist.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__relationships__select_album_object_relationship_to_artist.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__relationships__select_artist_array_relationship_to_album.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__relationships__select_artist_array_relationship_to_album.snap similarity index 94% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__relationships__select_artist_array_relationship_to_album.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__relationships__select_artist_array_relationship_to_album.snap index 3b9eee981..0130b2215 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__relationships__select_artist_array_relationship_to_album.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__relationships__select_artist_array_relationship_to_album.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__relationships__very_nested_recursive_relationship.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__relationships__very_nested_recursive_relationship.snap similarity index 98% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__relationships__very_nested_recursive_relationship.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__relationships__very_nested_recursive_relationship.snap index 6c5f39ecc..e62f02314 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__relationships__very_nested_recursive_relationship.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__relationships__very_nested_recursive_relationship.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__select_order_by_album_artist_name.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__sorting__select_order_by_album_artist_name.snap similarity index 81% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__select_order_by_album_artist_name.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__sorting__select_order_by_album_artist_name.snap index 18bc8d326..40d5cf623 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__select_order_by_album_artist_name.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__sorting__select_order_by_album_artist_name.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__sorting__select_order_by_artist_album_count.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__sorting__select_order_by_artist_album_count.snap new file mode 100644 index 000000000..6c74d760e --- /dev/null +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__sorting__select_order_by_artist_album_count.snap @@ -0,0 +1,19 @@ +--- +source: crates/tests/databases-tests/src/cockroach/query_tests.rs +expression: result +--- +[ + { + "rows": [ + { + "Name": "Iron Maiden" + }, + { + "Name": "Led Zeppelin" + }, + { + "Name": "Deep Purple" + } + ] + } +] diff --git a/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__sorting__select_order_by_artist_album_count_agg.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__sorting__select_order_by_artist_album_count_agg.snap new file mode 100644 index 000000000..6c74d760e --- /dev/null +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__sorting__select_order_by_artist_album_count_agg.snap @@ -0,0 +1,19 @@ +--- +source: crates/tests/databases-tests/src/cockroach/query_tests.rs +expression: result +--- +[ + { + "rows": [ + { + "Name": "Iron Maiden" + }, + { + "Name": "Led Zeppelin" + }, + { + "Name": "Deep Purple" + } + ] + } +] diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__select_order_by_artist_name.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__sorting__select_order_by_artist_name.snap similarity index 85% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__select_order_by_artist_name.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__sorting__select_order_by_artist_name.snap index 6df8d05a8..e6786896c 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__select_order_by_artist_name.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__sorting__select_order_by_artist_name.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__sorting__select_order_by_artist_name_with_name.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__sorting__select_order_by_artist_name_with_name.snap similarity index 94% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__sorting__select_order_by_artist_name_with_name.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__sorting__select_order_by_artist_name_with_name.snap index 7f377d222..f3106114c 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__sorting__select_order_by_artist_name_with_name.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__sorting__select_order_by_artist_name_with_name.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__select_order_by_name.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__sorting__select_order_by_name.snap similarity index 84% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__select_order_by_name.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__sorting__select_order_by_name.snap index b6eef8ad7..d0b565cb9 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__select_order_by_name.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__sorting__select_order_by_name.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/yugabyte/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap similarity index 83% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap index 308234e47..8cb80abeb 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap new file mode 100644 index 000000000..149820420 --- /dev/null +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap @@ -0,0 +1,25 @@ +--- +source: crates/tests/databases-tests/src/cockroach/query_tests.rs +expression: result +--- +[ + { + "rows": [ + { + "Name": "Iron Maiden" + }, + { + "Name": "Metallica" + }, + { + "Name": "U2" + }, + { + "Name": "Led Zeppelin" + }, + { + "Name": "Deep Purple" + } + ] + } +] diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__types__select_value_types.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__types__select_value_types.snap similarity index 89% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__types__select_value_types.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__types__select_value_types.snap index 6a60cb5ba..e77c99ae6 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__types__select_value_types.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__query_tests__types__select_value_types.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/cockroach/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__schema_tests__schema_test__get_schema.snap b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__schema_tests__schema_test__get_schema.snap similarity index 99% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__schema_tests__schema_test__get_schema.snap rename to crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__schema_tests__schema_test__get_schema.snap index fca2eabc6..5adaeb9e5 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__schema_tests__schema_test__get_schema.snap +++ b/crates/tests/databases-tests/src/cockroach/snapshots/databases_tests__cockroach__schema_tests__schema_test__get_schema.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/schema_tests.rs +source: crates/tests/databases-tests/src/cockroach/schema_tests.rs expression: result --- { diff --git a/crates/tests/other-db-tests/src/lib.rs b/crates/tests/databases-tests/src/lib.rs similarity index 100% rename from crates/tests/other-db-tests/src/lib.rs rename to crates/tests/databases-tests/src/lib.rs diff --git a/crates/tests/other-db-tests/src/postgres/common.rs b/crates/tests/databases-tests/src/postgres/common.rs similarity index 100% rename from crates/tests/other-db-tests/src/postgres/common.rs rename to crates/tests/databases-tests/src/postgres/common.rs diff --git a/crates/tests/other-db-tests/src/postgres/configuration_tests.rs b/crates/tests/databases-tests/src/postgres/configuration_tests.rs similarity index 100% rename from crates/tests/other-db-tests/src/postgres/configuration_tests.rs rename to crates/tests/databases-tests/src/postgres/configuration_tests.rs diff --git a/crates/tests/other-db-tests/src/postgres/explain_tests.rs b/crates/tests/databases-tests/src/postgres/explain_tests.rs similarity index 100% rename from crates/tests/other-db-tests/src/postgres/explain_tests.rs rename to crates/tests/databases-tests/src/postgres/explain_tests.rs diff --git a/crates/tests/other-db-tests/src/postgres/mod.rs b/crates/tests/databases-tests/src/postgres/mod.rs similarity index 100% rename from crates/tests/other-db-tests/src/postgres/mod.rs rename to crates/tests/databases-tests/src/postgres/mod.rs diff --git a/crates/tests/other-db-tests/src/postgres/mutation_tests.rs b/crates/tests/databases-tests/src/postgres/mutation_tests.rs similarity index 100% rename from crates/tests/other-db-tests/src/postgres/mutation_tests.rs rename to crates/tests/databases-tests/src/postgres/mutation_tests.rs diff --git a/crates/tests/other-db-tests/src/postgres/ndc_tests.rs b/crates/tests/databases-tests/src/postgres/ndc_tests.rs similarity index 100% rename from crates/tests/other-db-tests/src/postgres/ndc_tests.rs rename to crates/tests/databases-tests/src/postgres/ndc_tests.rs diff --git a/crates/tests/other-db-tests/src/postgres/query_tests.rs b/crates/tests/databases-tests/src/postgres/query_tests.rs similarity index 100% rename from crates/tests/other-db-tests/src/postgres/query_tests.rs rename to crates/tests/databases-tests/src/postgres/query_tests.rs diff --git a/crates/tests/other-db-tests/src/postgres/schema_tests.rs b/crates/tests/databases-tests/src/postgres/schema_tests.rs similarity index 100% rename from crates/tests/other-db-tests/src/postgres/schema_tests.rs rename to crates/tests/databases-tests/src/postgres/schema_tests.rs diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__configuration_tests__configuration_tests__configure_initial_configuration_is_unchanged.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__configuration_tests__configuration_tests__configure_initial_configuration_is_unchanged.snap similarity index 99% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__configuration_tests__configuration_tests__configure_initial_configuration_is_unchanged.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__configuration_tests__configuration_tests__configure_initial_configuration_is_unchanged.snap index cae436e07..86d0af0aa 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__configuration_tests__configuration_tests__configure_initial_configuration_is_unchanged.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__configuration_tests__configuration_tests__configure_initial_configuration_is_unchanged.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/configuration_tests.rs +source: crates/tests/databases-tests/src/postgres/configuration_tests.rs expression: default_configuration --- { diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__configuration_tests__configuration_tests__get_configuration_schema.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__configuration_tests__configuration_tests__get_configuration_schema.snap similarity index 99% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__configuration_tests__configuration_tests__get_configuration_schema.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__configuration_tests__configuration_tests__get_configuration_schema.snap index a9a61bdb0..e35113cad 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__configuration_tests__configuration_tests__get_configuration_schema.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__configuration_tests__configuration_tests__get_configuration_schema.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/configuration_tests.rs +source: crates/tests/databases-tests/src/postgres/configuration_tests.rs expression: schema --- { diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__configuration_tests__configuration_tests__get_rawconfiguration_schema.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__configuration_tests__configuration_tests__get_rawconfiguration_schema.snap similarity index 99% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__configuration_tests__configuration_tests__get_rawconfiguration_schema.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__configuration_tests__configuration_tests__get_rawconfiguration_schema.snap index 1865d8241..b51cca5ed 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__configuration_tests__configuration_tests__get_rawconfiguration_schema.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__configuration_tests__configuration_tests__get_rawconfiguration_schema.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/configuration_tests.rs +source: crates/tests/databases-tests/src/postgres/configuration_tests.rs expression: schema --- { diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__explain_tests__explain__select_by_pk.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__explain_tests__explain__select_by_pk.snap similarity index 88% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__explain_tests__explain__select_by_pk.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__explain_tests__explain__select_by_pk.snap index 4b96232d5..384330710 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__explain_tests__explain__select_by_pk.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__explain_tests__explain__select_by_pk.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/explain_tests.rs +source: crates/tests/databases-tests/src/postgres/explain_tests.rs expression: result.details.query --- EXPLAIN diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__explain_tests__explain__select_where_name_nilike.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__explain_tests__explain__select_where_name_nilike.snap similarity index 90% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__explain_tests__explain__select_where_name_nilike.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__explain_tests__explain__select_where_name_nilike.snap index bf73ec175..7eb30de72 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__explain_tests__explain__select_where_name_nilike.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__explain_tests__explain__select_where_name_nilike.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/explain_tests.rs +source: crates/tests/databases-tests/src/postgres/explain_tests.rs expression: result.details.query --- EXPLAIN diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__explain_tests__explain__select_where_variable.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__explain_tests__explain__select_where_variable.snap similarity index 89% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__explain_tests__explain__select_where_variable.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__explain_tests__explain__select_where_variable.snap index 8a087e3fd..407c7ae31 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__explain_tests__explain__select_where_variable.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__explain_tests__explain__select_where_variable.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/explain_tests.rs +source: crates/tests/databases-tests/src/postgres/explain_tests.rs expression: result.details.query --- EXPLAIN diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__mutation_tests__basic__select_by_pk.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__mutation_tests__basic__select_by_pk.snap similarity index 62% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__mutation_tests__basic__select_by_pk.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__mutation_tests__basic__select_by_pk.snap index 74b9b2934..8be57cca7 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__mutation_tests__basic__select_by_pk.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__mutation_tests__basic__select_by_pk.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/mutation_tests.rs +source: crates/tests/databases-tests/src/postgres/mutation_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__aggregation__aggregate_count_albums.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__aggregation__aggregate_count_albums.snap similarity index 80% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__aggregation__aggregate_count_albums.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__aggregation__aggregate_count_albums.snap index dca4198e3..73a5f3e07 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__aggregation__aggregate_count_albums.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__aggregation__aggregate_count_albums.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/yugabyte/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__aggregation__aggregate_count_albums_plus_field.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__aggregation__aggregate_count_albums_plus_field.snap similarity index 89% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__aggregation__aggregate_count_albums_plus_field.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__aggregation__aggregate_count_albums_plus_field.snap index 8c4eae9c4..90b20d401 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__aggregation__aggregate_count_albums_plus_field.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__aggregation__aggregate_count_albums_plus_field.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/yugabyte/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__aggregation__aggregate_count_artist_albums.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__aggregation__aggregate_count_artist_albums.snap similarity index 92% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__aggregation__aggregate_count_artist_albums.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__aggregation__aggregate_count_artist_albums.snap index fc3cd6d70..de6759811 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__aggregation__aggregate_count_artist_albums.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__aggregation__aggregate_count_artist_albums.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap similarity index 95% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap index 447e18d6b..a38a27c1b 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__basic__select_5.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__basic__select_5.snap similarity index 82% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__basic__select_5.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__basic__select_5.snap index 7e7002cb4..520c8ba8a 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__basic__select_5.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__basic__select_5.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__basic__select_by_pk.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__basic__select_by_pk.snap similarity index 64% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__basic__select_by_pk.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__basic__select_by_pk.snap index c29f231ef..a36816477 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__basic__select_by_pk.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__basic__select_by_pk.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__basic__select_int_and_string.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__basic__select_int_and_string.snap similarity index 68% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__basic__select_int_and_string.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__basic__select_int_and_string.snap index a5d99df59..60c1cef7c 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__basic__select_int_and_string.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__basic__select_int_and_string.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__native_queries__select_artist.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__native_queries__select_artist.snap similarity index 81% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__native_queries__select_artist.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__native_queries__select_artist.snap index d663171e7..81307ea00 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__native_queries__select_artist.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__native_queries__select_artist.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap similarity index 94% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap index 23d49e928..923e0adb3 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__native_queries__select_artists_below_id.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__native_queries__select_artists_below_id.snap similarity index 78% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__native_queries__select_artists_below_id.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__native_queries__select_artists_below_id.snap index 1e99f6200..483433b3a 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__native_queries__select_artists_below_id.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__native_queries__select_artists_below_id.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__native_queries__select_order_by_artist_album_count.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__native_queries__select_order_by_artist_album_count.snap similarity index 96% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__native_queries__select_order_by_artist_album_count.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__native_queries__select_order_by_artist_album_count.snap index b89d4b25b..f459d734e 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__native_queries__select_order_by_artist_album_count.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__native_queries__select_order_by_artist_album_count.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__native_queries__select_sort_relationship.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__native_queries__select_sort_relationship.snap similarity index 87% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__native_queries__select_sort_relationship.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__native_queries__select_sort_relationship.snap index 294abf32b..2fc26fa1e 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__native_queries__select_sort_relationship.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__native_queries__select_sort_relationship.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__native_queries__select_where_relationship.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__native_queries__select_where_relationship.snap similarity index 86% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__native_queries__select_where_relationship.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__native_queries__select_where_relationship.snap index b328458df..bf72c28ff 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__native_queries__select_where_relationship.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__native_queries__select_where_relationship.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_album_id_equals_self.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_album_id_equals_self.snap similarity index 71% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_album_id_equals_self.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_album_id_equals_self.snap index 24e3db7b6..0fc2f5d7b 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_album_id_equals_self.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_album_id_equals_self.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_album_id_greater_than.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_album_id_greater_than.snap similarity index 92% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_album_id_greater_than.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_album_id_greater_than.snap index adfdccc3f..557ad411d 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_album_id_greater_than.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_album_id_greater_than.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap similarity index 93% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap index dd0c65099..e3a604563 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_album_id_is_not_null.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_album_id_is_not_null.snap similarity index 84% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_album_id_is_not_null.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_album_id_is_not_null.snap index fe16e5531..3d67cae5a 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_album_id_is_not_null.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_album_id_is_not_null.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_album_id_less_than.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_album_id_less_than.snap new file mode 100644 index 000000000..48fdba534 --- /dev/null +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_album_id_less_than.snap @@ -0,0 +1,9 @@ +--- +source: crates/tests/databases-tests/src/postgres/query_tests.rs +expression: result +--- +[ + { + "rows": [] + } +] diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap similarity index 70% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap index 0575c4bcc..86daef7f9 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_and.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_and.snap similarity index 63% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_and.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_and.snap index de0cae005..5c6b61f97 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_and.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_and.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_array_relationship.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_array_relationship.snap new file mode 100644 index 000000000..78f819280 --- /dev/null +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_array_relationship.snap @@ -0,0 +1,26 @@ +--- +source: crates/tests/databases-tests/src/postgres/query_tests.rs +expression: result +--- +[ + { + "rows": [ + { + "title": "Santana", + "albums": { + "rows": [ + { + "title": "Supernatural" + }, + { + "title": "Santana - As Years Go By" + }, + { + "title": "Santana Live" + } + ] + } + } + ] + } +] diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_eq.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_eq.snap similarity index 67% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_eq.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_eq.snap index 36c34e668..e587833cb 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_eq.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_eq.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_ilike.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_ilike.snap similarity index 91% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_ilike.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_ilike.snap index 45f66ccee..1efca4d6c 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_ilike.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_ilike.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_in.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_in.snap similarity index 68% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_in.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_in.snap index 7e5f22aab..cc14b8c5b 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_in.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_in.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_iregex.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_iregex.snap similarity index 68% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_iregex.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_iregex.snap index 74804760b..14475f9a2 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_iregex.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_iregex.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_like.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_like.snap similarity index 91% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_like.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_like.snap index 45f66ccee..1efca4d6c 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_like.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_like.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_neq.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_neq.snap similarity index 87% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_neq.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_neq.snap index c9ab1c1a2..8000f55e5 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_neq.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_neq.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_nilike.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_nilike.snap similarity index 84% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_nilike.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_nilike.snap index 2c9b39994..9200b3e96 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_nilike.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_nilike.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_niregex.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_niregex.snap similarity index 87% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_niregex.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_niregex.snap index 1b86de4e7..6ba5c27c9 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_niregex.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_niregex.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_not_in.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_not_in.snap similarity index 87% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_not_in.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_not_in.snap index 1b86de4e7..6ba5c27c9 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_not_in.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_not_in.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_not_like.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_not_like.snap similarity index 86% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_not_like.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_not_like.snap index a1202a0d9..5b64f591a 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_not_like.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_not_like.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_nregex.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_nregex.snap similarity index 92% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_nregex.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_nregex.snap index 8a8122a5f..d299799e6 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_nregex.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_nregex.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_regex.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_regex.snap similarity index 68% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_regex.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_regex.snap index 74804760b..14475f9a2 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_name_regex.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_name_regex.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_or.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_or.snap similarity index 69% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_or.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_or.snap index 17d398fda..96bc3d94f 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_or.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_or.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_related_exists.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_related_exists.snap new file mode 100644 index 000000000..78f819280 --- /dev/null +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_related_exists.snap @@ -0,0 +1,26 @@ +--- +source: crates/tests/databases-tests/src/postgres/query_tests.rs +expression: result +--- +[ + { + "rows": [ + { + "title": "Santana", + "albums": { + "rows": [ + { + "title": "Supernatural" + }, + { + "title": "Santana - As Years Go By" + }, + { + "title": "Santana Live" + } + ] + } + } + ] + } +] diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_unrelated_exists.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_unrelated_exists.snap similarity index 80% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_unrelated_exists.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_unrelated_exists.snap index 1329cac6a..97b07a5fe 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_unrelated_exists.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_unrelated_exists.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_variable.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_variable.snap similarity index 80% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_variable.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_variable.snap index e42a6cd44..9c2851bad 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_variable.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_variable.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_variable_int.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_variable_int.snap similarity index 81% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_variable_int.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_variable_int.snap index d55056765..87c27fae2 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_variable_int.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__predicates__select_where_variable_int.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__relationships__dup_array_relationship.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__relationships__dup_array_relationship.snap similarity index 95% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__relationships__dup_array_relationship.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__relationships__dup_array_relationship.snap index 8b5a7fc7f..db40dff7a 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__relationships__dup_array_relationship.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__relationships__dup_array_relationship.snap @@ -1,12 +1,12 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ { "rows": [ { - "Albums": { + "albums": { "rows": [ { "title": "For Those About To Rock We Salute You" @@ -16,7 +16,7 @@ expression: result } ] }, - "albums": { + "Albums": { "rows": [ { "title": "For Those About To Rock We Salute You" @@ -28,7 +28,7 @@ expression: result } }, { - "Albums": { + "albums": { "rows": [ { "title": "Balls to the Wall" @@ -38,7 +38,7 @@ expression: result } ] }, - "albums": { + "Albums": { "rows": [ { "title": "Balls to the Wall" @@ -50,14 +50,14 @@ expression: result } }, { - "Albums": { + "albums": { "rows": [ { "title": "Big Ones" } ] }, - "albums": { + "Albums": { "rows": [ { "title": "Big Ones" diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__relationships__nested_array_relationships.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__relationships__nested_array_relationships.snap similarity index 97% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__relationships__nested_array_relationships.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__relationships__nested_array_relationships.snap index b8562c98f..af61ce7ba 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__relationships__nested_array_relationships.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__relationships__nested_array_relationships.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__relationships__nested_object_relationships.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__relationships__nested_object_relationships.snap similarity index 96% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__relationships__nested_object_relationships.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__relationships__nested_object_relationships.snap index d4ef65494..6221cf810 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__relationships__nested_object_relationships.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__relationships__nested_object_relationships.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__relationships__select_album_object_relationship_to_artist.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__relationships__select_album_object_relationship_to_artist.snap similarity index 93% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__relationships__select_album_object_relationship_to_artist.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__relationships__select_album_object_relationship_to_artist.snap index 29925ad46..ca89fdb0a 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__relationships__select_album_object_relationship_to_artist.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__relationships__select_album_object_relationship_to_artist.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__relationships__select_artist_array_relationship_to_album.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__relationships__select_artist_array_relationship_to_album.snap similarity index 94% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__relationships__select_artist_array_relationship_to_album.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__relationships__select_artist_array_relationship_to_album.snap index 869099458..89b194822 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__relationships__select_artist_array_relationship_to_album.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__relationships__select_artist_array_relationship_to_album.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__relationships__very_nested_recursive_relationship.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__relationships__very_nested_recursive_relationship.snap similarity index 98% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__relationships__very_nested_recursive_relationship.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__relationships__very_nested_recursive_relationship.snap index 76d4a1b46..476253267 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__relationships__very_nested_recursive_relationship.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__relationships__very_nested_recursive_relationship.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__sorting__select_order_by_album_artist_name.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__select_order_by_album_artist_name.snap similarity index 82% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__sorting__select_order_by_album_artist_name.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__select_order_by_album_artist_name.snap index 8ca8f2a9b..dc169103f 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__sorting__select_order_by_album_artist_name.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__select_order_by_album_artist_name.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__sorting__select_order_by_artist_album_count.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__select_order_by_artist_album_count.snap similarity index 75% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__sorting__select_order_by_artist_album_count.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__select_order_by_artist_album_count.snap index 1520944b5..20c6186a1 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__sorting__select_order_by_artist_album_count.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__select_order_by_artist_album_count.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__sorting__select_order_by_artist_album_count_agg.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__select_order_by_artist_album_count_agg.snap similarity index 75% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__sorting__select_order_by_artist_album_count_agg.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__select_order_by_artist_album_count_agg.snap index 1520944b5..20c6186a1 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__sorting__select_order_by_artist_album_count_agg.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__select_order_by_artist_album_count_agg.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__sorting__select_order_by_artist_name.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__select_order_by_artist_name.snap similarity index 85% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__sorting__select_order_by_artist_name.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__select_order_by_artist_name.snap index e8ba5372f..9c7a0aaeb 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__sorting__select_order_by_artist_name.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__select_order_by_artist_name.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__select_order_by_artist_name_with_name.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__select_order_by_artist_name_with_name.snap similarity index 94% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__select_order_by_artist_name_with_name.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__select_order_by_artist_name_with_name.snap index 743742f04..f78a92504 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__select_order_by_artist_name_with_name.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__select_order_by_artist_name_with_name.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/yugabyte/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__sorting__select_order_by_name.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__select_order_by_name.snap similarity index 84% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__sorting__select_order_by_name.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__select_order_by_name.snap index 93fb1b9e8..48f7d1449 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__sorting__select_order_by_name.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__select_order_by_name.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap similarity index 83% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap index 0a4073a43..d00c2bfce 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate.snap similarity index 70% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate.snap index 1233b27dd..9b6abbbbb 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/yugabyte/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate_exists.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate_exists.snap similarity index 82% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate_exists.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate_exists.snap index 6e49c8f11..665450c47 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate_exists.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate_exists.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap similarity index 81% rename from crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap index 3b5824b86..4a523cbc4 100644 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__types__select_value_types.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__types__select_value_types.snap similarity index 89% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__types__select_value_types.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__types__select_value_types.snap index e9e383442..1190a6bb1 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__types__select_value_types.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__query_tests__types__select_value_types.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/postgres/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__schema_tests__schema_test__get_schema.snap b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__schema_tests__schema_test__get_schema.snap similarity index 99% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__schema_tests__schema_test__get_schema.snap rename to crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__schema_tests__schema_test__get_schema.snap index 0710e5115..483dcb7f1 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__schema_tests__schema_test__get_schema.snap +++ b/crates/tests/databases-tests/src/postgres/snapshots/databases_tests__postgres__schema_tests__schema_test__get_schema.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/schema_tests.rs +source: crates/tests/databases-tests/src/postgres/schema_tests.rs expression: result --- { diff --git a/crates/tests/other-db-tests/src/snapshots/other_db_tests__capabilities_tests__capabilities_tests__get_capabilities.snap b/crates/tests/databases-tests/src/snapshots/databases_tests__capabilities_tests__capabilities_tests__get_capabilities.snap similarity index 81% rename from crates/tests/other-db-tests/src/snapshots/other_db_tests__capabilities_tests__capabilities_tests__get_capabilities.snap rename to crates/tests/databases-tests/src/snapshots/databases_tests__capabilities_tests__capabilities_tests__get_capabilities.snap index f9b50997c..5cfedd48d 100644 --- a/crates/tests/other-db-tests/src/snapshots/other_db_tests__capabilities_tests__capabilities_tests__get_capabilities.snap +++ b/crates/tests/databases-tests/src/snapshots/databases_tests__capabilities_tests__capabilities_tests__get_capabilities.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/capabilities_tests.rs +source: crates/tests/databases-tests/src/capabilities_tests.rs expression: "ndc_postgres::capabilities::get_capabilities()" --- { diff --git a/crates/tests/other-db-tests/src/yugabyte/common.rs b/crates/tests/databases-tests/src/yugabyte/common.rs similarity index 100% rename from crates/tests/other-db-tests/src/yugabyte/common.rs rename to crates/tests/databases-tests/src/yugabyte/common.rs diff --git a/crates/tests/other-db-tests/src/yugabyte/mod.rs b/crates/tests/databases-tests/src/yugabyte/mod.rs similarity index 100% rename from crates/tests/other-db-tests/src/yugabyte/mod.rs rename to crates/tests/databases-tests/src/yugabyte/mod.rs diff --git a/crates/tests/other-db-tests/src/yugabyte/query_tests.rs b/crates/tests/databases-tests/src/yugabyte/query_tests.rs similarity index 100% rename from crates/tests/other-db-tests/src/yugabyte/query_tests.rs rename to crates/tests/databases-tests/src/yugabyte/query_tests.rs diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__aggregation__aggregate_count_albums.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__aggregation__aggregate_count_albums.snap similarity index 80% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__aggregation__aggregate_count_albums.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__aggregation__aggregate_count_albums.snap index 680250dd8..6099c30d3 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__aggregation__aggregate_count_albums.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__aggregation__aggregate_count_albums.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/yugabyte/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__aggregation__aggregate_count_albums_plus_field.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__aggregation__aggregate_count_albums_plus_field.snap similarity index 89% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__aggregation__aggregate_count_albums_plus_field.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__aggregation__aggregate_count_albums_plus_field.snap index 34a458640..55393813b 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__aggregation__aggregate_count_albums_plus_field.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__aggregation__aggregate_count_albums_plus_field.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/yugabyte/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__aggregation__aggregate_count_artist_albums.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__aggregation__aggregate_count_artist_albums.snap similarity index 92% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__aggregation__aggregate_count_artist_albums.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__aggregation__aggregate_count_artist_albums.snap index e27e12ba0..6661aa123 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__aggregation__aggregate_count_artist_albums.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__aggregation__aggregate_count_artist_albums.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap similarity index 95% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap index 5f4f23183..bdae7f278 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__aggregation__aggregate_count_artist_albums_plus_field.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__basic__select_5.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__basic__select_5.snap similarity index 84% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__basic__select_5.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__basic__select_5.snap index d64c93c15..495b7af41 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__basic__select_5.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__basic__select_5.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__basic__select_by_pk.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__basic__select_by_pk.snap similarity index 66% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__basic__select_by_pk.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__basic__select_by_pk.snap index a42a398d5..5fc3237e3 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__basic__select_by_pk.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__basic__select_by_pk.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__basic__select_int_and_string.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__basic__select_int_and_string.snap similarity index 70% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__basic__select_int_and_string.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__basic__select_int_and_string.snap index 53666afbf..1539838f7 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__basic__select_int_and_string.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__basic__select_int_and_string.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__native_queries__select_artist.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__native_queries__select_artist.snap similarity index 83% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__native_queries__select_artist.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__native_queries__select_artist.snap index 4689bb30c..96de271b5 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__native_queries__select_artist.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__native_queries__select_artist.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap similarity index 94% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap index 936745cab..9f100544b 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__native_queries__select_artist_with_album_by_title_relationship_arguments.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__native_queries__select_artists_below_id.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__native_queries__select_artists_below_id.snap similarity index 80% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__native_queries__select_artists_below_id.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__native_queries__select_artists_below_id.snap index 0b80e3885..b3c0066b7 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__native_queries__select_artists_below_id.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__native_queries__select_artists_below_id.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__native_queries__select_order_by_artist_album_count.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__native_queries__select_order_by_artist_album_count.snap similarity index 96% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__native_queries__select_order_by_artist_album_count.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__native_queries__select_order_by_artist_album_count.snap index 0fbc107b3..7947dce85 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__native_queries__select_order_by_artist_album_count.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__native_queries__select_order_by_artist_album_count.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__native_queries__select_sort_relationship.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__native_queries__select_sort_relationship.snap similarity index 87% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__native_queries__select_sort_relationship.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__native_queries__select_sort_relationship.snap index 8a331f2a0..ce77686b6 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__native_queries__select_sort_relationship.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__native_queries__select_sort_relationship.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__native_queries__select_where_relationship.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__native_queries__select_where_relationship.snap similarity index 86% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__native_queries__select_where_relationship.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__native_queries__select_where_relationship.snap index 1b0bb8c12..9e7a23f92 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__native_queries__select_where_relationship.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__native_queries__select_where_relationship.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_album_id_equals_self.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_album_id_equals_self.snap similarity index 74% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_album_id_equals_self.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_album_id_equals_self.snap index 6eabe1a2f..ab44ce5fe 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_album_id_equals_self.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_album_id_equals_self.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_album_id_greater_than.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_album_id_greater_than.snap similarity index 93% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_album_id_greater_than.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_album_id_greater_than.snap index 43835942e..a6fa9ea85 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_album_id_greater_than.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_album_id_greater_than.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap similarity index 93% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap index 7e61536c4..4e5fe6e41 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_album_id_greater_than_or_equal_to.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_album_id_is_not_null.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_album_id_is_not_null.snap similarity index 86% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_album_id_is_not_null.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_album_id_is_not_null.snap index 50a222629..16f72d9bb 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_album_id_is_not_null.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_album_id_is_not_null.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_album_id_less_than.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_album_id_less_than.snap new file mode 100644 index 000000000..1c9014c4a --- /dev/null +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_album_id_less_than.snap @@ -0,0 +1,9 @@ +--- +source: crates/databases-tests/src/aurora/query_tests.rs +expression: result +--- +[ + { + "rows": [] + } +] diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap similarity index 72% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap index 0989a4945..70ec83104 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_album_id_less_than_or_equal_to.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_and.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_and.snap similarity index 63% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_and.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_and.snap index 259c43a94..f5b48fb28 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_and.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_and.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_array_relationship.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_array_relationship.snap new file mode 100644 index 000000000..10ea2702c --- /dev/null +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_array_relationship.snap @@ -0,0 +1,26 @@ +--- +source: crates/tests/databases-tests/src/yugabyte/query_tests.rs +expression: result +--- +[ + { + "rows": [ + { + "title": "Santana", + "albums": { + "rows": [ + { + "title": "Supernatural" + }, + { + "title": "Santana - As Years Go By" + }, + { + "title": "Santana Live" + } + ] + } + } + ] + } +] diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_ilike.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_ilike.snap similarity index 92% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_ilike.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_ilike.snap index 81ed363a6..4aa6be51e 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_ilike.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_ilike.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_in.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_in.snap similarity index 71% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_in.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_in.snap index 639ffe6c2..d69079db7 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_in.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_in.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_regex.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_iregex.snap similarity index 70% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_regex.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_iregex.snap index 650a1e429..6ff81caa2 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_regex.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_iregex.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_like.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_like.snap similarity index 92% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_like.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_like.snap index 81ed363a6..4aa6be51e 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_like.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_like.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_nilike.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_nilike.snap similarity index 85% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_nilike.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_nilike.snap index cc1989e6c..9f80c45b3 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_nilike.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_nilike.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_not_in.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_niregex.snap similarity index 88% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_not_in.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_niregex.snap index 5b76a2090..750e5000f 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_not_in.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_niregex.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_not_in.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_not_in.snap similarity index 88% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_not_in.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_not_in.snap index 5b76a2090..750e5000f 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_not_in.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_not_in.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_not_like.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_not_like.snap similarity index 88% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_not_like.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_not_like.snap index ee152c873..8230b0a27 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_not_like.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_not_like.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_nregex.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_nregex.snap similarity index 93% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_nregex.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_nregex.snap index 67c74ec02..058fe06be 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_name_nregex.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_nregex.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_regex.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_regex.snap similarity index 70% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_regex.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_regex.snap index 650a1e429..6ff81caa2 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_name_regex.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_name_regex.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_or.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_or.snap similarity index 70% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_or.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_or.snap index 23b26855c..67f383046 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_or.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_or.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_related_exists.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_related_exists.snap new file mode 100644 index 000000000..52c829267 --- /dev/null +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_related_exists.snap @@ -0,0 +1,26 @@ +--- +source: crates/tests/databases-tests/src/aurora/query_tests.rs +expression: result +--- +[ + { + "rows": [ + { + "title": "Santana", + "albums": { + "rows": [ + { + "title": "Supernatural" + }, + { + "title": "Santana - As Years Go By" + }, + { + "title": "Santana Live" + } + ] + } + } + ] + } +] diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_unrelated_exists.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_unrelated_exists.snap similarity index 82% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_unrelated_exists.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_unrelated_exists.snap index 5936d702b..c4ec66127 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_unrelated_exists.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_unrelated_exists.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_variable.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_variable.snap similarity index 81% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_variable.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_variable.snap index 28ff66b40..d63982c23 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_variable.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_variable.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_variable_int.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_variable_int.snap similarity index 80% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_variable_int.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_variable_int.snap index fed49c691..ace23ac82 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_variable_int.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__predicates__select_where_variable_int.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/yugabyte/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__relationships__dup_array_relationship.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__relationships__dup_array_relationship.snap similarity index 95% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__relationships__dup_array_relationship.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__relationships__dup_array_relationship.snap index 443b9e97b..200d7e6f7 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__relationships__dup_array_relationship.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__relationships__dup_array_relationship.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__relationships__nested_array_relationships.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__relationships__nested_array_relationships.snap similarity index 97% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__relationships__nested_array_relationships.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__relationships__nested_array_relationships.snap index bf0931ca6..8382357d5 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__relationships__nested_array_relationships.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__relationships__nested_array_relationships.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__relationships__nested_object_relationships.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__relationships__nested_object_relationships.snap similarity index 96% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__relationships__nested_object_relationships.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__relationships__nested_object_relationships.snap index b051d57ca..9aa181720 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__relationships__nested_object_relationships.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__relationships__nested_object_relationships.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__relationships__select_album_object_relationship_to_artist.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__relationships__select_album_object_relationship_to_artist.snap similarity index 93% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__relationships__select_album_object_relationship_to_artist.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__relationships__select_album_object_relationship_to_artist.snap index b883a31ef..19f223f95 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__relationships__select_album_object_relationship_to_artist.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__relationships__select_album_object_relationship_to_artist.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__relationships__select_artist_array_relationship_to_album.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__relationships__select_artist_array_relationship_to_album.snap similarity index 94% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__relationships__select_artist_array_relationship_to_album.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__relationships__select_artist_array_relationship_to_album.snap index 9db075345..9caac37ad 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__relationships__select_artist_array_relationship_to_album.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__relationships__select_artist_array_relationship_to_album.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__relationships__very_nested_recursive_relationship.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__relationships__very_nested_recursive_relationship.snap similarity index 98% rename from crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__relationships__very_nested_recursive_relationship.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__relationships__very_nested_recursive_relationship.snap index 654cccc75..fa443b48b 100644 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__relationships__very_nested_recursive_relationship.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__relationships__very_nested_recursive_relationship.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/citus/query_tests.rs +source: crates/tests/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__select_order_by_album_artist_name.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__select_order_by_album_artist_name.snap similarity index 82% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__select_order_by_album_artist_name.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__select_order_by_album_artist_name.snap index 9a4286852..4fe9e3100 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__select_order_by_album_artist_name.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__select_order_by_album_artist_name.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/yugabyte/query_tests.rs +source: crates/tests/databases-tests/src/yugabyte/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__select_order_by_artist_album_count.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__select_order_by_artist_album_count.snap similarity index 77% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__select_order_by_artist_album_count.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__select_order_by_artist_album_count.snap index 47bd734c8..3c1f6acf7 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__select_order_by_artist_album_count.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__select_order_by_artist_album_count.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__select_order_by_artist_album_count_agg.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__select_order_by_artist_album_count_agg.snap similarity index 77% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__select_order_by_artist_album_count_agg.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__select_order_by_artist_album_count_agg.snap index 47bd734c8..3c1f6acf7 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__select_order_by_artist_album_count_agg.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__select_order_by_artist_album_count_agg.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__select_order_by_artist_name.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__select_order_by_artist_name.snap similarity index 85% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__select_order_by_artist_name.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__select_order_by_artist_name.snap index 06828e03a..0e780e89e 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__select_order_by_artist_name.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__select_order_by_artist_name.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/yugabyte/query_tests.rs +source: crates/tests/databases-tests/src/yugabyte/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__select_order_by_artist_name_with_name.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__select_order_by_artist_name_with_name.snap similarity index 94% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__select_order_by_artist_name_with_name.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__select_order_by_artist_name_with_name.snap index 851c19b94..4323d3c90 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__select_order_by_artist_name_with_name.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__select_order_by_artist_name_with_name.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/yugabyte/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__select_order_by_name.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__select_order_by_name.snap similarity index 84% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__select_order_by_name.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__select_order_by_name.snap index 296707e66..93e5b5884 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__select_order_by_name.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__select_order_by_name.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/yugabyte/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap similarity index 85% rename from crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap index 9bbd7eab5..9871225bf 100644 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__select_track_order_by_artist_id_and_album_title.snap @@ -1,5 +1,5 @@ --- -source: crates/other-db-tests/src/aurora/query_tests.rs +source: crates/databases-tests/src/aurora/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate.snap similarity index 70% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate.snap index 6b95b5275..6f5b1b078 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/yugabyte/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate_exists.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate_exists.snap similarity index 82% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate_exists.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate_exists.snap index 339a89fa0..4c69535a5 100644 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate_exists.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__sorting_by_nested_relationship_column_with_predicate_exists.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/yugabyte/query_tests.rs +source: crates/tests/databases-tests/src/yugabyte/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap similarity index 81% rename from crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap index de3194b31..6af115d66 100644 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap +++ b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap @@ -1,5 +1,5 @@ --- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs +source: crates/tests/databases-tests/src/yugabyte/query_tests.rs expression: result --- [ diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__types__select_value_types.snap b/crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__types__select_value_types.snap similarity index 100% rename from crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__types__select_value_types.snap rename to crates/tests/databases-tests/src/yugabyte/snapshots/databases_tests__yugabyte__query_tests__types__select_value_types.snap diff --git a/crates/tests/other-db-tests/readme.md b/crates/tests/other-db-tests/readme.md deleted file mode 100644 index b493b5e0c..000000000 --- a/crates/tests/other-db-tests/readme.md +++ /dev/null @@ -1,5 +0,0 @@ -# other-db-tests - -These test the Postgres connector against various third party database vendors. -They should not aim to be exhaustive, rather that basic queries -work as expected. diff --git a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_album_id_less_than.snap b/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_album_id_less_than.snap deleted file mode 100644 index c0b291609..000000000 --- a/crates/tests/other-db-tests/src/aurora/snapshots/other_db_tests__aurora__query_tests__predicates__select_where_album_id_less_than.snap +++ /dev/null @@ -1,9 +0,0 @@ ---- -source: crates/other-db-tests/src/aurora/query_tests.rs -expression: result ---- -[ - { - "rows": [] - } -] diff --git a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_album_id_less_than.snap b/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_album_id_less_than.snap deleted file mode 100644 index 4ba372c92..000000000 --- a/crates/tests/other-db-tests/src/citus/snapshots/other_db_tests__citus__query_tests__predicates__select_where_album_id_less_than.snap +++ /dev/null @@ -1,9 +0,0 @@ ---- -source: crates/tests/other-db-tests/src/citus/query_tests.rs -expression: result ---- -[ - { - "rows": [] - } -] diff --git a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_album_id_less_than.snap b/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_album_id_less_than.snap deleted file mode 100644 index 72fcd5cf2..000000000 --- a/crates/tests/other-db-tests/src/cockroach/snapshots/other_db_tests__cockroach__query_tests__predicates__select_where_album_id_less_than.snap +++ /dev/null @@ -1,9 +0,0 @@ ---- -source: crates/tests/other-db-tests/src/cockroach/query_tests.rs -expression: result ---- -[ - { - "rows": [] - } -] diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_album_id_less_than.snap b/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_album_id_less_than.snap deleted file mode 100644 index 59fda0364..000000000 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_album_id_less_than.snap +++ /dev/null @@ -1,9 +0,0 @@ ---- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs -expression: result ---- -[ - { - "rows": [] - } -] diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_array_relationship.snap b/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_array_relationship.snap deleted file mode 100644 index 1dd80ce5c..000000000 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_array_relationship.snap +++ /dev/null @@ -1,26 +0,0 @@ ---- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs -expression: result ---- -[ - { - "rows": [ - { - "title": "Santana", - "albums": { - "rows": [ - { - "title": "Supernatural" - }, - { - "title": "Santana - As Years Go By" - }, - { - "title": "Santana Live" - } - ] - } - } - ] - } -] diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_ilike.snap b/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_ilike.snap deleted file mode 100644 index b6b41ca1d..000000000 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_ilike.snap +++ /dev/null @@ -1,38 +0,0 @@ ---- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs -expression: result ---- -[ - { - "rows": [ - { - "AlbumId": 1, - "Title": "For Those About To Rock We Salute You" - }, - { - "AlbumId": 4, - "Title": "Let There Be Rock" - }, - { - "AlbumId": 59, - "Title": "Deep Purple In Rock" - }, - { - "AlbumId": 108, - "Title": "Rock In Rio [CD1]" - }, - { - "AlbumId": 109, - "Title": "Rock In Rio [CD2]" - }, - { - "AlbumId": 213, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - { - "AlbumId": 216, - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - } - ] - } -] diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_iregex.snap b/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_iregex.snap deleted file mode 100644 index 08828f8c0..000000000 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_iregex.snap +++ /dev/null @@ -1,14 +0,0 @@ ---- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs -expression: result ---- -[ - { - "rows": [ - { - "AlbumId": 6, - "Title": "Jagged Little Pill" - } - ] - } -] diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_like.snap b/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_like.snap deleted file mode 100644 index b6b41ca1d..000000000 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_like.snap +++ /dev/null @@ -1,38 +0,0 @@ ---- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs -expression: result ---- -[ - { - "rows": [ - { - "AlbumId": 1, - "Title": "For Those About To Rock We Salute You" - }, - { - "AlbumId": 4, - "Title": "Let There Be Rock" - }, - { - "AlbumId": 59, - "Title": "Deep Purple In Rock" - }, - { - "AlbumId": 108, - "Title": "Rock In Rio [CD1]" - }, - { - "AlbumId": 109, - "Title": "Rock In Rio [CD2]" - }, - { - "AlbumId": 213, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - { - "AlbumId": 216, - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - } - ] - } -] diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_niregex.snap b/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_niregex.snap deleted file mode 100644 index 49940e34c..000000000 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_niregex.snap +++ /dev/null @@ -1,30 +0,0 @@ ---- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs -expression: result ---- -[ - { - "rows": [ - { - "AlbumId": 1, - "Title": "For Those About To Rock We Salute You" - }, - { - "AlbumId": 2, - "Title": "Balls to the Wall" - }, - { - "AlbumId": 3, - "Title": "Restless and Wild" - }, - { - "AlbumId": 4, - "Title": "Let There Be Rock" - }, - { - "AlbumId": 5, - "Title": "Big Ones" - } - ] - } -] diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_not_in.snap b/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_not_in.snap deleted file mode 100644 index 49940e34c..000000000 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_not_in.snap +++ /dev/null @@ -1,30 +0,0 @@ ---- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs -expression: result ---- -[ - { - "rows": [ - { - "AlbumId": 1, - "Title": "For Those About To Rock We Salute You" - }, - { - "AlbumId": 2, - "Title": "Balls to the Wall" - }, - { - "AlbumId": 3, - "Title": "Restless and Wild" - }, - { - "AlbumId": 4, - "Title": "Let There Be Rock" - }, - { - "AlbumId": 5, - "Title": "Big Ones" - } - ] - } -] diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_regex.snap b/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_regex.snap deleted file mode 100644 index 08828f8c0..000000000 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_name_regex.snap +++ /dev/null @@ -1,14 +0,0 @@ ---- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs -expression: result ---- -[ - { - "rows": [ - { - "AlbumId": 6, - "Title": "Jagged Little Pill" - } - ] - } -] diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_related_exists.snap b/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_related_exists.snap deleted file mode 100644 index 1dd80ce5c..000000000 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__predicates__select_where_related_exists.snap +++ /dev/null @@ -1,26 +0,0 @@ ---- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs -expression: result ---- -[ - { - "rows": [ - { - "title": "Santana", - "albums": { - "rows": [ - { - "title": "Supernatural" - }, - { - "title": "Santana - As Years Go By" - }, - { - "title": "Santana Live" - } - ] - } - } - ] - } -] diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__select_order_by_artist_album_count.snap b/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__select_order_by_artist_album_count.snap deleted file mode 100644 index 93909278c..000000000 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__select_order_by_artist_album_count.snap +++ /dev/null @@ -1,19 +0,0 @@ ---- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs -expression: result ---- -[ - { - "rows": [ - { - "Name": "Iron Maiden" - }, - { - "Name": "Led Zeppelin" - }, - { - "Name": "Deep Purple" - } - ] - } -] diff --git a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__select_order_by_artist_album_count_agg.snap b/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__select_order_by_artist_album_count_agg.snap deleted file mode 100644 index 93909278c..000000000 --- a/crates/tests/other-db-tests/src/postgres/snapshots/other_db_tests__postgres__query_tests__sorting__select_order_by_artist_album_count_agg.snap +++ /dev/null @@ -1,19 +0,0 @@ ---- -source: crates/tests/other-db-tests/src/postgres/query_tests.rs -expression: result ---- -[ - { - "rows": [ - { - "Name": "Iron Maiden" - }, - { - "Name": "Led Zeppelin" - }, - { - "Name": "Deep Purple" - } - ] - } -] diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_album_id_less_than.snap b/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_album_id_less_than.snap deleted file mode 100644 index c0b291609..000000000 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_album_id_less_than.snap +++ /dev/null @@ -1,9 +0,0 @@ ---- -source: crates/other-db-tests/src/aurora/query_tests.rs -expression: result ---- -[ - { - "rows": [] - } -] diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_array_relationship.snap b/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_array_relationship.snap deleted file mode 100644 index 5744812f2..000000000 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_array_relationship.snap +++ /dev/null @@ -1,26 +0,0 @@ ---- -source: crates/tests/other-db-tests/src/yugabyte/query_tests.rs -expression: result ---- -[ - { - "rows": [ - { - "title": "Santana", - "albums": { - "rows": [ - { - "title": "Supernatural" - }, - { - "title": "Santana - As Years Go By" - }, - { - "title": "Santana Live" - } - ] - } - } - ] - } -] diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_related_exists.snap b/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_related_exists.snap deleted file mode 100644 index 3d0d33a69..000000000 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_related_exists.snap +++ /dev/null @@ -1,26 +0,0 @@ ---- -source: crates/tests/other-db-tests/src/aurora/query_tests.rs -expression: result ---- -[ - { - "rows": [ - { - "title": "Santana", - "albums": { - "rows": [ - { - "title": "Supernatural" - }, - { - "title": "Santana - As Years Go By" - }, - { - "title": "Santana Live" - } - ] - } - } - ] - } -] diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_variable_int.snap b/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_variable_int.snap deleted file mode 100644 index 9ec388b16..000000000 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__predicates__select_where_variable_int.snap +++ /dev/null @@ -1,25 +0,0 @@ ---- -source: crates/tests/other-db-tests/src/yugabyte/query_tests.rs -expression: result ---- -[ - { - "rows": [ - { - "AlbumId": 35, - "Title": "Garage Inc. (Disc 1)" - } - ] - }, - { - "rows": [ - { - "AlbumId": 222, - "Title": "Serie Sem Limite (Disc 1)" - } - ] - }, - { - "rows": [] - } -] diff --git a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap b/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap deleted file mode 100644 index c7c06877d..000000000 --- a/crates/tests/other-db-tests/src/yugabyte/snapshots/other_db_tests__yugabyte__query_tests__sorting__sorting_by_relationship_count_with_predicate.snap +++ /dev/null @@ -1,25 +0,0 @@ ---- -source: crates/tests/other-db-tests/src/yugabyte/query_tests.rs -expression: result ---- -[ - { - "rows": [ - { - "Name": "Iron Maiden" - }, - { - "Name": "Metallica" - }, - { - "Name": "U2" - }, - { - "Name": "Led Zeppelin" - }, - { - "Name": "Deep Purple" - } - ] - } -] diff --git a/justfile b/justfile index 393c424c5..fec1f4dc9 100644 --- a/justfile +++ b/justfile @@ -87,7 +87,7 @@ dev: start-dependencies OTEL_SERVICE_NAME=ndc-postgres \ cargo watch -i "**/snapshots/*" \ -c \ - -x 'test -p query-engine-translation -p other-db-tests --features postgres' \ + -x 'test -p query-engine-translation -p databases-tests --features postgres' \ -x clippy \ -x 'run --bin ndc-postgres -- serve --configuration {{POSTGRES_CHINOOK_DEPLOYMENT}}' @@ -108,7 +108,7 @@ dev-cockroach: start-dependencies OTEL_SERVICE_NAME=cockroach-ndc \ cargo watch -i "**/snapshots/*" \ -c \ - -x 'test -p query-engine-translation -p other-db-tests --features cockroach' \ + -x 'test -p query-engine-translation -p databases-tests --features cockroach' \ -x clippy \ -x 'run --bin ndc-postgres -- serve --configuration {{COCKROACH_CHINOOK_DEPLOYMENT}}' @@ -119,7 +119,7 @@ dev-citus: start-dependencies OTEL_SERVICE_NAME=citus-ndc \ cargo watch -i "**/snapshots/*" \ -c \ - -x 'test -p query-engine-translation -p other-db-tests --features citus' \ + -x 'test -p query-engine-translation -p databases-tests --features citus' \ -x clippy \ -x 'run --bin ndc-postgres -- serve --configuration {{CITUS_CHINOOK_DEPLOYMENT}}' @@ -138,7 +138,7 @@ test-other-dbs: create-aurora-deployment start-dependencies OTEL_SERVICE_NAME=ndc-postgres \ cargo watch -i "**/snapshots/*" \ -c \ - -x 'test -p other-db-tests --all-features' \ + -x 'test -p databases-tests --all-features' \ -x clippy \ -x 'run --bin ndc-postgres -- serve --configuration {{AURORA_CHINOOK_DEPLOYMENT}}'