Class: Mysql2Replication::RowsEvent

Inherits:
Event
  • Object
show all
Defined in:
ext/mysql2-replication/mysql2_replication.c

Direct Known Subclasses

DeleteRowsEvent, UpdateRowsEvent, WriteRowsEvent

Instance Method Summary collapse

Instance Method Details

#statement_end?Boolean

Returns:

  • (Boolean)


35
36
37
38
39
40
# File 'ext/mysql2-replication/mysql2_replication.c', line 35

static VALUE
rbm2_replication_rows_event_statement_end_p(VALUE self)
{
  return (NUM2USHORT(rb_iv_get(self, "@rows_flags")) & FL_STMT_END) ?
    RUBY_Qtrue : RUBY_Qfalse;
}