- Timestamp:
- 03/26/09 10:33:51 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/STSelector.cpp
r1428 r1542 104 104 void STSelector::setTaQL( const std::string& taql ) 105 105 { 106 taql_ = "USING STYLE PYTHON " +taql;106 taql_ = taql; 107 107 } 108 108 … … 143 143 if ( taql_.size() > 0 ) { 144 144 Table tmpt = tab; 145 std::string pytaql = "USING STYLE PYTHON " + taql_; 145 146 146 147 if ( !query.isNull() ) { // taql and selection 147 tmpt = tableCommand( taql_, tab(query));148 tmpt = tableCommand(pytaql, tab(query)); 148 149 } else { // taql only 149 tmpt = tableCommand( taql_, tab);150 tmpt = tableCommand(pytaql, tab); 150 151 } 151 152 return sort(tmpt);
Note:
See TracChangeset
for help on using the changeset viewer.