OmniSciDB  a5dc49c757
 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 597 of file InputMetadata.cpp.

597  {
598  if (!fragments.empty() && fragments.front().resultSet) {
599  return fragments.front().resultSet->entryCount();
600  }
601  size_t fragment_num_tupples_upper_bound = 0;
602  for (const auto& fragment : fragments) {
603  fragment_num_tupples_upper_bound =
604  std::max(fragment.getNumTuples(), fragment_num_tupples_upper_bound);
605  }
606  return fragment_num_tupples_upper_bound;
607 }
std::vector< FragmentInfo > fragments
Definition: Fragmenter.h:171
size_t Fragmenter_Namespace::TableInfo::getNumTuples ( ) const

Definition at line 583 of file InputMetadata.cpp.

583  {
584  if (!fragments.empty() && fragments.front().resultSet) {
585  return fragments.front().getNumTuples();
586  }
587  return numTuples;
588 }
std::vector< FragmentInfo > fragments
Definition: Fragmenter.h:171
size_t Fragmenter_Namespace::TableInfo::getNumTuplesUpperBound ( ) const

Definition at line 590 of file InputMetadata.cpp.

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

590  {
591  if (!fragments.empty() && fragments.front().resultSet) {
592  return fragments.front().resultSet->entryCount();
593  }
594  return numTuples;
595 }
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: