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