zetasql-toolkit-core/src/main/java/com/google/zetasql/toolkit/catalog/FunctionInfo.java [139:150]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      return this;
    }

    public Builder setBody(String body) {
      Preconditions.checkNotNull(body);
      this.body = Optional.of(body);
      return this;
    }

    public Builder setBody(Optional<String> body) {
      this.body = body;
      return this;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



zetasql-toolkit-core/src/main/java/com/google/zetasql/toolkit/catalog/TVFInfo.java [105:116]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      return this;
    }

    public Builder setBody(String body) {
      Preconditions.checkNotNull(body);
      this.body = Optional.of(body);
      return this;
    }

    public Builder setBody(Optional<String> body) {
      this.body = body;
      return this;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



