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

Function unclear_tables

sql/sql_select.cc:18005–18017  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18003*/
18004
18005static void unclear_tables(JOIN *join, table_map *cleared_tables)
18006{
18007 for (uint i= 0 ; i < join->table_count ; i++)
18008 {
18009 if ((*cleared_tables) & (((table_map) 1) << i))
18010 {
18011 TABLE *table= join->table[i];
18012 if (table->s->null_bytes)
18013 memcpy(table->null_flags, table->record[1], table->s->null_bytes);
18014 unmark_as_null_row(table);
18015 }
18016 }
18017}
18018
18019
18020/*****************************************************************************

Callers 3

do_selectFunction · 0.85
end_send_groupFunction · 0.85
end_write_groupFunction · 0.85

Calls 1

unmark_as_null_rowFunction · 0.85

Tested by

no test coverage detected