cost method
Add COST modifier
Sets the estimated execution cost for the column function.
cost
should be a positive number.
Implementation
SchemaUtils cost(double cost) {
_constraints.add("COST $cost");
return this;
}
Add COST modifier
Sets the estimated execution cost for the column function.
cost
should be a positive number.
SchemaUtils cost(double cost) {
_constraints.add("COST $cost");
return this;
}