zetasql-toolkit-bigquery/src/main/java/com/google/zetasql/toolkit/catalog/bigquery/BigQueryCatalog.java [470:482]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    boolean constantExists =
        this.catalog.getConstantList().stream()
            .anyMatch(
                existingConstant -> existingConstant.getFullName().equalsIgnoreCase(fullName));

    if (constantExists) {
      throw new CatalogResourceAlreadyExists(fullName, "Constant " + fullName + "already exists");
    }

    this.catalog.addConstant(constant);
  }

  @Override
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



zetasql-toolkit-core/src/main/java/com/google/zetasql/toolkit/catalog/basic/BasicCatalogWrapper.java [104:116]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    boolean constantExists =
        this.catalog.getConstantList().stream()
            .anyMatch(
                existingConstant -> existingConstant.getFullName().equalsIgnoreCase(fullName));

    if (constantExists) {
      throw new CatalogResourceAlreadyExists(fullName, "Constant " + fullName + "already exists");
    }

    this.catalog.addConstant(constant);
  }

  @Override
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



