Skip to content

Commit

Permalink
Fix CI - adjust to new SQL formatter style
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek committed Jun 8, 2024
1 parent ba72cd0 commit 659acbb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/Schema/TestCaseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ public function testLogQuery(): void
catch if ERROR_NUMBER() = 544 begin
set
IDENTITY_INSERT `t` on;
begin
try insert into `t` (
`name`, `file`, `int`,
Expand All @@ -100,12 +101,14 @@ public function testLogQuery(): void
'Ewa', 'x y', 1, 1.0,
1, NULL, '2020-10-20', '["z"]'
);
set
IDENTITY_INSERT `t` off;
end try begin
catch
set
IDENTITY_INSERT `t` off;
throw;
end catch
end
Expand Down

0 comments on commit 659acbb

Please sign in to comment.