leakproof method

SchemaUtils leakproof()

Add LEAKPROOF modifier

Indicates that the column function is leakproof (doesn't reveal information about its arguments).

Implementation

SchemaUtils leakproof() {
  _constraints.add("LEAKPROOF");
  return this;
}