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

Method send_first_row

sql/sql_limit.h:65–71  ·  view source on GitHub ↗

Send the first row, still honoring offset_limit_cnt */

Source from the content-addressed store, hash-verified

63
64 /* Send the first row, still honoring offset_limit_cnt */
65 void send_first_row()
66 {
67 /* Guard against overflow */
68 if ((select_limit_cnt= offset_limit_cnt +1 ) == 0)
69 select_limit_cnt= offset_limit_cnt;
70 // with_ties= false; Remove // on merge to 10.6
71 }
72
73 bool is_unlimited() const
74 { return select_limit_cnt == HA_POS_ERROR; }

Callers 1

remove_duplicatesMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected