| 519 | |
| 520 | template<class View, class Table> |
| 521 | forceinline ExecStatus |
| 522 | PosCompact<View,Table>::post(Home home, ViewArray<View>& x, |
| 523 | const TupleSet& ts) { |
| 524 | auto ct = new (home) PosCompact(home,x,ts); |
| 525 | assert((x.size() > 1) && (ts.tuples() > 1)); |
| 526 | return ct->table.empty() ? ES_FAILED : ES_OK; |
| 527 | } |
| 528 | |
| 529 | template<class View, class Table> |
| 530 | forceinline size_t |
nothing calls this directly
no test coverage detected