OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Fragmenter_Namespace::TableInfo Class Reference

#include <Fragmenter.h>

Public Member Functions

 TableInfo ()
 
size_t getNumTuples () const
 
size_t getNumTuplesUpperBound () const
 
size_t getPhysicalNumTuples () const
 
void setPhysicalNumTuples (const size_t physNumTuples)
 
size_t getFragmentNumTuplesUpperBound () const
 

Public Attributes

std::vector< int > chunkKeyPrefix
 
std::vector< FragmentInfofragments
 

Private Attributes

size_t numTuples
 

Detailed Description

Definition at line 156 of file Fragmenter.h.

Constructor & Destructor Documentation

Fragmenter_Namespace::TableInfo::TableInfo ( )
inline

Definition at line 158 of file Fragmenter.h.

Member Function Documentation

size_t Fragmenter_Namespace::TableInfo::getFragmentNumTuplesUpperBound ( ) const

Definition at line 576 of file InputMetadata.cpp.

576  {
577  if (!fragments.empty() && fragments.front().resultSet) {
578  return fragments.front().resultSet->entryCount();
579  }
580  size_t fragment_num_tupples_upper_bound = 0;
581  for (const auto& fragment : fragments) {
582  fragment_num_tupples_upper_bound =
583  std::max(fragment.getNumTuples(), fragment_num_tupples_upper_bound);
584  }
585  return fragment_num_tupples_upper_bound;
586 }
std::vector< FragmentInfo > fragments
Definition: Fragmenter.h:171
size_t Fragmenter_Namespace::TableInfo::getNumTuples ( ) const

Definition at line 562 of file InputMetadata.cpp.

562  {
563  if (!fragments.empty() && fragments.front().resultSet) {
564  return fragments.front().getNumTuples();
565  }
566  return numTuples;
567 }
std::vector< FragmentInfo > fragments
Definition: Fragmenter.h:171
size_t Fragmenter_Namespace::TableInfo::getNumTuplesUpperBound ( ) const

Definition at line 569 of file InputMetadata.cpp.

Referenced by RangeJoinHashTable::getInstance(), BoundingBoxIntersectJoinHashTable::getInstance(), and BaselineJoinHashTable::reifyWithLayout().

569  {
570  if (!fragments.empty() && fragments.front().resultSet) {
571  return fragments.front().resultSet->entryCount();
572  }
573  return numTuples;
574 }
std::vector< FragmentInfo > fragments
Definition: Fragmenter.h:171

+ Here is the caller graph for this function:

size_t Fragmenter_Namespace::TableInfo::getPhysicalNumTuples ( ) const
inline

Definition at line 164 of file Fragmenter.h.

References numTuples.

Referenced by anonymous_namespace{InputMetadata.cpp}::copy_table_info(), and Fragmenter_Namespace::InsertOrderFragmenter::getFragmentsForQuery().

164 { return numTuples; }

+ Here is the caller graph for this function:

void Fragmenter_Namespace::TableInfo::setPhysicalNumTuples ( const size_t  physNumTuples)
inline

Definition at line 166 of file Fragmenter.h.

References numTuples.

Referenced by build_table_info(), anonymous_namespace{InputMetadata.cpp}::copy_table_info(), and Fragmenter_Namespace::InsertOrderFragmenter::getFragmentsForQuery().

166 { numTuples = physNumTuples; }

+ Here is the caller graph for this function:

Member Data Documentation

std::vector<int> Fragmenter_Namespace::TableInfo::chunkKeyPrefix
size_t Fragmenter_Namespace::TableInfo::numTuples
mutableprivate

Definition at line 174 of file Fragmenter.h.

Referenced by getPhysicalNumTuples(), and setPhysicalNumTuples().


The documentation for this class was generated from the following files: