Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/danfengcao/binlog2sql
/ is_dml_event
Function
is_dml_event
binlog2sql/binlog2sql_util.py:149–153 ·
view source on GitHub ↗
(event)
Source
from the content-addressed store, hash-verified
147
148
149
def
is_dml_event(event):
150
if
isinstance(event, WriteRowsEvent) or isinstance(event, UpdateRowsEvent) or isinstance(event, DeleteRowsEvent):
151
return
True
152
else
:
153
return
False
154
155
156
def
event_type(event):
Callers
1
process_binlog
Method · 0.90
Calls
no outgoing calls
Tested by
no test coverage detected