Skip to content

Commit

Permalink
modify test case
Browse files Browse the repository at this point in the history
  • Loading branch information
yumiura committed Jun 29, 2024
1 parent 3306f5c commit 8325819
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/proc/set.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe("SET", () => {
});
});

dialect("mysql", () => {
dialect(["mysql", "mariadb"], () => {
it("supports SET statement", () => {
testWc("SET @x = 10");
});
Expand All @@ -29,7 +29,7 @@ describe("SET", () => {
});

it("supports scalar subquery", () => {
testWc("SET @total_tax = (SELECT SUM(tax) FROM taxable_transactions)");
testWc("SET @sum_age = (SELECT SUM(age) FROM user)");
});
});

Expand Down

0 comments on commit 8325819

Please sign in to comment.