Skip to content

Commit

Permalink
Core, API: Move SQLViewRepresentation to API
Browse files Browse the repository at this point in the history
  • Loading branch information
amogh-jahagirdar committed Dec 11, 2023
1 parent 263b530 commit 040fa7b
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .palantir/revapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -877,6 +877,10 @@ acceptedBreaks:
- code: "java.field.serialVersionUIDChanged"
new: "field org.apache.iceberg.util.SerializableMap<K, V>.serialVersionUID"
justification: "Serialization is not be used"
- code: "java.method.visibilityReduced"
old: "method org.apache.iceberg.view.ImmutableSQLViewRepresentation org.apache.iceberg.view.ImmutableSQLViewRepresentation::copyOf(org.apache.iceberg.view.SQLViewRepresentation)"
new: "method org.apache.iceberg.view.ImmutableSQLViewRepresentation org.apache.iceberg.view.ImmutableSQLViewRepresentation::copyOf(org.apache.iceberg.view.BaseSQLViewRepresentation)"
justification: "Immutables generated copyOf visibility changed"
apache-iceberg-0.14.0:
org.apache.iceberg:iceberg-api:
- code: "java.class.defaultSerializationChanged"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@
*/
package org.apache.iceberg.view;

import org.immutables.value.Value;

@Value.Immutable
/** SQLViewRepresentation represents views in SQL with a given dialect */
public interface SQLViewRepresentation extends ViewRepresentation {

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.iceberg.view;

import org.immutables.value.Value;

@Value.Immutable
@SuppressWarnings("ImmutablesStyle")
@Value.Style(
typeImmutable = "ImmutableSQLViewRepresentation",
visibilityString = "PUBLIC",
builderVisibilityString = "PUBLIC")
interface BaseSQLViewRepresentation extends SQLViewRepresentation {}

0 comments on commit 040fa7b

Please sign in to comment.