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)


27
28
29
30
31
32
# File 'ext/mysql2-replication/mysql2_replication.c', line 27

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;
}