Skip to content

Commit

Permalink
new error
Browse files Browse the repository at this point in the history
  • Loading branch information
def- committed Jul 14, 2023
1 parent 8195c10 commit 4d2e387
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ grep -v "CAST does not support casting from" | # random nulls
grep -v "number of columns must be a positive integer literal" |
grep -v "regex_extract requires a string literal as its first argument" |
grep -v -E "column \".*\" does not exist" | # https://github.com/MaterializeInc/materialize/issues/20533
grep -v "SET clause does not support casting from interval to integer" |

grep -v "Expected joined table, found" | # Should fix for multi table join
grep -v "Expected ON, or USING after JOIN, found" | # Should fix for multi table join
Expand Down
1 change: 1 addition & 0 deletions postgres.cc
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ void dut_pqxx::test(const std::string &stmt)
try {
pqxx::work w(c);
w.exec("SET TRANSACTION_ISOLATION TO 'SERIALIZABLE'");
//w.exec("SET CLUSTER_REPLICA = default.r1");
w.exec(stmt.c_str());
if (d6() < 4)
w.abort();
Expand Down

0 comments on commit 4d2e387

Please sign in to comment.