Package org.apache.drill.exec.record
Interface TableFunctionContract
- All Known Implementing Classes:
- AbstractTableFunctionRecordBatch,- UnnestRecordBatch
public interface TableFunctionContract
- 
Method SummaryModifier and TypeMethodDescriptionvoidsetIncoming(LateralContract incoming) sets the incoming Lateral Contract for the operator.voidsetIncoming(RecordBatch incoming) sets the incoming record batch for the operator.
- 
Method Details- 
setIncomingsets the incoming record batch for the operator. The innerNext() method requires one of the setIncoming methods to be called before it is called.- Parameters:
- incoming-
 
- 
setIncomingsets the incoming Lateral Contract for the operator. The innerNext() method requires one of the setIncoming methods to be called before it is called.- Parameters:
- incoming-
 
 
-