MCPcopy Create free account
hub / github.com/MariaDB/server / inc_sent_row_count

Method inc_sent_row_count

sql/sql_class.h:4218–4223  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4216 void set_sent_row_count(ha_rows count);
4217
4218 inline void inc_sent_row_count(ha_rows count)
4219 {
4220 m_sent_row_count+= count;
4221 sent_row_count_for_statement+= count;
4222 MYSQL_SET_STATEMENT_ROWS_SENT(m_statement_psi, m_sent_row_count);
4223 }
4224 inline void inc_examined_row_count_fast(ha_rows count= 1)
4225 {
4226 m_examined_row_count+= count;

Callers 2

send_dataMethod · 0.80
mysql_ha_readFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected