You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: use search() instead of match() for partial regex matching on schema names
match() does full-string match per RFC 9535, so match(@~, '^source-')
requires the entire name to be '^source-'. search() does substring match,
so search(@~, '^source-') correctly finds names starting with 'source-'.
Co-Authored-By: AJ Steers <aj@airbyte.io>
0 commit comments