zetasql-toolkit-core/src/main/java/com/google/zetasql/toolkit/catalog/FunctionInfo.java [81:91]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public Optional<String> getBody() {
    return Optional.ofNullable(this.body);
  }

  public String getFullName() {
    return String.join(".", namePath);
  }

  public Builder toBuilder() {
    return newBuilder()
        .setNamePath(this.namePath)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



zetasql-toolkit-core/src/main/java/com/google/zetasql/toolkit/catalog/TVFInfo.java [57:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public Optional<String> getBody() {
    return Optional.ofNullable(this.body);
  }

  public String getFullName() {
    return String.join(".", namePath);
  }

  public Builder toBuilder() {
    return newBuilder()
        .setNamePath(this.namePath)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



