Go to the source code of this file.
Functions | |
FENNEL_BEGIN_CPPFILE ("$Id: //open/dev/fennel/exec/CartesianJoinExecStream.cpp#14 $") | |
std::ostream & | operator<< (std::ostream &os, SharedExecStreamBufAccessor buf) |
FENNEL_END_CPPFILE ("$Id: //open/dev/fennel/exec/CartesianJoinExecStream.cpp#14 $") |
FENNEL_BEGIN_CPPFILE | ( | "$Id: //open/dev/fennel/exec/CartesianJoinExecStream.cpp#14 $" | ) |
FENNEL_END_CPPFILE | ( | "$Id: //open/dev/fennel/exec/CartesianJoinExecStream.cpp#14 $" | ) |
std::ostream& operator<< | ( | std::ostream & | os, | |
SharedExecStreamBufAccessor | buf | |||
) | [inline] |
Definition at line 93 of file CartesianJoinExecStream.cpp.
References ExecStreamBufState_names.
00095 { 00096 os << ExecStreamBufState_names[buf->getState()]; 00097 if (buf->hasPendingEOS()) { 00098 os << "(EOS pending)"; 00099 } 00100 return os; 00101 }