parallelRestricted method

SchemaUtils parallelRestricted()

Add PARALLEL RESTRICTED modifier

Indicates that the column function cannot be used in parallel queries.

Implementation

SchemaUtils parallelRestricted() {
  _constraints.add("PARALLEL RESTRICTED");
  return this;
}