template<class ColElemT>
Definition at line 49 of file mainTable.cpp. References Impala::Util::Database::GetInstance(), Impala::CmdOptions::GetInstance(), Impala::CmdOptions::GetInt(), and Impala::Core::Table::Read(). 00050 { 00051 typedef Core::Column::ColumnTem<ColElemT> ColumnType; 00052 typedef Core::Table::TableTem<ColumnType> TableType; 00053 00054 CmdOptions& options = CmdOptions::GetInstance(); 00055 Util::Database* db = &Util::Database::GetInstance(); 00056 TableType table(0); 00057 Core::Table::Read(&table, fName, db); 00058 table.Dump(options.GetInt("start"), options.GetInt("end")); 00059 }
Here is the call graph for this function:
|