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

Method next

sql/sql_window.cc:861–877  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

859 }
860
861 virtual int next()
862 {
863 /* Allow multiple next() calls in EOF state. */
864 if (at_eof())
865 return -1;
866
867 if (io_cache)
868 {
869 rownum++;
870 }
871 else
872 {
873 cache_pos+= ref_length;
874 DBUG_ASSERT(cache_pos <= cache_end);
875 }
876 return 0;
877 }
878
879 virtual int prev()
880 {

Callers 13

walk_till_non_peerMethod · 0.45
walk_till_non_peerMethod · 0.45
walk_till_non_peerMethod · 0.45
next_rowMethod · 0.45
next_partitionMethod · 0.45
next_partitionMethod · 0.45
next_partitionMethod · 0.45
next_part_topMethod · 0.45
next_part_bottomMethod · 0.45
next_row_topMethod · 0.45
next_row_bottomMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected