Skip to content

Commit

Permalink
test(qe): exclude json nested shorthand in MySQL 5.6 (#4438)
Browse files Browse the repository at this point in the history
  • Loading branch information
Miguel Fernández authored Nov 13, 2023
1 parent 29b6534 commit 10b1ce5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ mod json {

// The external runner for driver adapters, in spite of the protocol being used in the test matrix
// uses the JSON representation of queries, so this test should not apply to driver adapters (exclude(JS))
#[connector_test(schema(json_opt), exclude(JS))]
#[connector_test(schema(json_opt), exclude(JS, MySQL(5.6)))]
async fn nested_not_shorthand(runner: Runner) -> TestResult<()> {
// Those tests pass with the JSON protocol because the entire object is parsed as JSON.
// They remain useful to ensure we don't ever allow a full JSON filter input object type at the schema level.
Expand Down

0 comments on commit 10b1ce5

Please sign in to comment.