Disables the cogroup functionality for table operators that handle multiple input streams.
If cogroup is disabled, table operators that handle multiple input streams may return different results on systems with different configurations where the number of AMPs differ. To get consistent results on different configurations, cogroup must be enabled.
Syntax
public void disableCoGroup()
Example
public int contract(RuntimeContract contract, ResultSet rsin[], ResultSet rsout[]) throws SQLException { DbsInfo.traceWrite("MITblOpContract"); contract.disableCoGroup(); ... }