Skip to content

Commit b4a83df

Browse files
committed
Improve
1 parent b571e94 commit b4a83df

File tree

3 files changed

+99
-364
lines changed

3 files changed

+99
-364
lines changed

etl-destinations/src/bigquery/client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -880,7 +880,7 @@ fn bq_error_to_etl_error(err: BQError) -> EtlError {
880880
///
881881
/// These patterns are matched against the error message to determine if the error
882882
/// is due to schema mismatch (e.g., after DDL changes when the cached schema is stale).
883-
const SCHEMA_MISMATCH_PATTERNS: &[&str] = &["extra field"];
883+
const SCHEMA_MISMATCH_PATTERNS: &[&str] = &["extra field", "is missing in the proto"];
884884

885885
/// Checks if an error message indicates a schema mismatch.
886886
fn is_schema_mismatch_message(message: &str) -> bool {

0 commit comments

Comments
 (0)