return physicalVisitor.visitSort(this, value);
}
@Override
public OperatorCost getCost() {
Size childSize = child.getSize();
long n = childSize.getRecordCount();
long width = childSize.getRecordSize();
//TODO: Magic Number, let's assume 1/10 of data can fit in memory.
int k = 10;
long n2 = n/k;
double cpuCost =