MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / post_select_list

Function post_select_list

src/gpre/sqe.cpp:3612–3622  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3610//
3611
3612static gpre_nod* post_select_list( gpre_nod* fields, map* to_map)
3613{
3614 assert_IS_NOD(fields);
3615
3616 gpre_nod* list = MSC_node(nod_list, fields->nod_count);
3617
3618 for (USHORT i = 0; i < fields->nod_count; i++)
3619 list->nod_arg[i] = post_map(fields->nod_arg[i], to_map);
3620
3621 return list;
3622}
3623
3624
3625//____________________________________________________________

Callers 1

SQE_selectFunction · 0.85

Calls 2

MSC_nodeFunction · 0.85
post_mapFunction · 0.85

Tested by

no test coverage detected