In I27cac9bd265c86ff2a3381ff9f844f60ef991cfc we modernized
the default tests and converted the "a in b" CTE tests to combinations,
however apparently the existing tests were not testing all
combinations and had repeats instead. The combinations
decorator has made this much easier to spot, so use
the correct combinations that were originally intended.
Change-Id: Icd904887bff00c31525497d0b1508fabaf052dc9
(cherry picked from commit
046934083bbf0193e29c990bed0527fdac56f9a8)
@testing.combinations(
("update", "select", testing.requires.ctes_on_dml),
- ("update", "select", testing.requires.ctes_on_dml),
- ("update", "select", testing.requires.ctes_on_dml),
+ ("delete", "select", testing.requires.ctes_on_dml),
+ ("insert", "select", testing.requires.ctes_on_dml),
("select", "update"),
("select", "insert"),
argnames="a, b",