src/main/java/com/google/cloud/spanner/pgadapter/statements/local/SelectCurrentDatabaseStatement.java [55:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public StatementResult execute(BackendConnection backendConnection, Statement statement) {
    ResultSet resultSet =
        ClientSideResultSet.forRows(
            Type.struct(StructField.of("current_database", Type.string())),
            ImmutableList.of(
                Struct.newBuilder()
                    .set("current_database")
                    .to(backendConnection.getCurrentDatabase())
                    .build()));
    return new QueryResult(resultSet);
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/google/cloud/spanner/pgadapter/statements/local/SelectCurrentCatalogStatement.java [54:64]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public StatementResult execute(BackendConnection backendConnection, Statement statement) {
    ResultSet resultSet =
        ClientSideResultSet.forRows(
            Type.struct(StructField.of("current_catalog", Type.string())),
            ImmutableList.of(
                Struct.newBuilder()
                    .set("current_catalog")
                    .to(backendConnection.getCurrentDatabase())
                    .build()));
    return new QueryResult(resultSet);
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



