Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tang8330 committed Dec 20, 2024
1 parent 2a3ebe4 commit 19f1e3d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sources/mysql/streaming/ddl/ddl.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ func (s *SchemaAdapter) applyDDL(unixTs int64, result antlr.Event) error {

tblAdapter, ok := s.adapters[result.GetTable()]
if !ok {
return fmt.Errorf("table not found: %q", result.GetTable())
return nil
//return fmt.Errorf("table not found: %q", result.GetTable())
}

switch castedResult := result.(type) {
Expand Down

0 comments on commit 19f1e3d

Please sign in to comment.