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

Function check_list_for_field

sql/sql_select.cc:1389–1400  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1387*/
1388
1389static bool check_list_for_field(List<Item> *items)
1390{
1391 List_iterator_fast <Item> select_it(*items);
1392 Item *select_el;
1393
1394 while ((select_el= select_it++))
1395 {
1396 if (select_el->with_field())
1397 return true;
1398 }
1399 return false;
1400}
1401
1402static bool check_list_for_field(ORDER *order)
1403{

Callers 1

prepareMethod · 0.85

Calls 1

with_fieldMethod · 0.80

Tested by

no test coverage detected