OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
QueryFragmentDescriptor.cpp File Reference
+ Include dependency graph for QueryFragmentDescriptor.cpp:

Go to the source code of this file.

Namespaces

 anonymous_namespace{QueryFragmentDescriptor.cpp}
 

Functions

bool anonymous_namespace{QueryFragmentDescriptor.cpp}::is_sample_query (const RelAlgExecutionUnit &ra_exe_unit)
 
std::ostream & operator<< (std::ostream &os, FragmentsPerTable const &fragments_per_table)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  os,
FragmentsPerTable const &  fragments_per_table 
)

Definition at line 500 of file QueryFragmentDescriptor.cpp.

References FragmentsPerTable::fragment_ids, and FragmentsPerTable::table_key.

500  {
501  os << fragments_per_table.table_key << ", fragment_ids";
502  for (size_t i = 0; i < fragments_per_table.fragment_ids.size(); ++i) {
503  os << (i ? ' ' : '(') << fragments_per_table.fragment_ids[i];
504  }
505  return os << ')';
506 }