zetasql-toolkit-core/src/main/java/com/google/zetasql/toolkit/catalog/io/JsonCatalogDeserializer.java [316:323]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      FunctionArgumentType[] arguments =
          Optional.ofNullable(jsonObject.get("arguments"))
              .map(
                  jsonArguments -> context.deserialize(jsonArguments, FunctionArgumentType[].class))
              .map(FunctionArgumentType[].class::cast)
              .orElseThrow(
                  () ->
                      new JsonParseException(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



zetasql-toolkit-core/src/main/java/com/google/zetasql/toolkit/catalog/io/JsonCatalogDeserializer.java [446:453]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      FunctionArgumentType[] arguments =
          Optional.ofNullable(jsonObject.get("arguments"))
              .map(
                  jsonArguments -> context.deserialize(jsonArguments, FunctionArgumentType[].class))
              .map(FunctionArgumentType[].class::cast)
              .orElseThrow(
                  () ->
                      new JsonParseException(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



