Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions misc/python/materialize/sqlsmith.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,4 +141,5 @@
"The fast_path_optimizer shouldn't make a fast path plan slow path.", # TODO: Remove when database-issues#9645 is fixed
"Window function performance issue: `reduce_unnest_list_fusion` failed", # TODO: Remove when database-issues#9644 is fixed
"WITH ORDINALITY or ROWS FROM with pg_catalog.regexp_split_to_table not yet supported",
"invalid normalization form", # Expected with https://github.com/MaterializeInc/materialize/pull/33507
]
10 changes: 9 additions & 1 deletion misc/shlib/shlib.bash
Original file line number Diff line number Diff line change
Expand Up @@ -269,8 +269,16 @@ trufflehog_jq_filter_common() {
.Raw != "d3aa325086974cdfb3912f28e5a8c168" and
.Raw != "jdbc:postgresql://postgres:5432/postgres" and
.Raw != "RPSsql12345" and
.Raw != "RPSsql1234" and
.Raw != "RPSsql123" and
.Raw != "RPSsql12" and
.Raw != "RPSsql1" and
.Raw != "RPSsql" and
.Raw != "RPSsq"
.Raw != "RPSsq" and
.Raw != "RPSs" and
.Raw != "RPS" and
.Raw != "RP" and
.Raw != "R"
)'
}

Expand Down