Skip to content

Commit

Permalink
Check if test fails
Browse files Browse the repository at this point in the history
  • Loading branch information
recipe committed Feb 19, 2024
1 parent 5887c3e commit d0a1b1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests.sql
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@ VALUES
ROW('1 < 1.0.1-beta', VERSION_COMPARE('1', '1.0.1-beta') = -1),
ROW('alpha < 1.0.0', VERSION_COMPARE('alpha', '1.0.0') = -1),
ROW('alpha < beta', VERSION_COMPARE('alpha', 'beta') = -1),
ROW('4.9.4+xy1 < 4.9.4', VERSION_COMPARE('4.9.4+xy1', '4.9.4') = -1)
ROW('4.9.4+xy1 < 4.9.4', VERSION_COMPARE('4.9.4+xy1', '4.9.4') = 0)
) AS t
WHERE t.`column_1` <> 1;

0 comments on commit d0a1b1d

Please sign in to comment.