We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 427ac6b commit 209d403Copy full SHA for 209d403
types/index.d.ts
@@ -153,13 +153,22 @@ export type BinLogTableMapEvent = BaseBinLogEvent & {
153
columnTypes: number[];
154
};
155
156
+export type BinLogQueryEvent = BaseBinLogEvent & {
157
+ query: string;
158
+ executionTime: number;
159
+ errorCode: number;
160
+ schema: string;
161
+ statusVars: string;
162
+};
163
+
164
export type BinLogEvent =
165
| BinLogRotationEvent
166
| BinLogGTIDLogEvent
167
| BinLogXidEvent
168
| BinLogRowEvent
169
| BinLogRowUpdateEvent
- | BinLogTableMapEvent;
170
+ | BinLogTableMapEvent
171
+ | BinLogQueryEvent;
172
173
// @vlasky/mysql Connection
174
export interface MySQLConnection {
0 commit comments