Package org.apache.iceberg.view
Interface SQLViewRepresentation
-
- All Superinterfaces:
ViewRepresentation
public interface SQLViewRepresentation extends ViewRepresentation
SQLViewRepresentation represents views in SQL with a given dialect
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.iceberg.view.ViewRepresentation
ViewRepresentation.Type
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description java.lang.String
dialect()
The view query SQL dialect.java.lang.String
sql()
The view query SQL text.default java.lang.String
type()
-
-
-
Method Detail
-
type
default java.lang.String type()
- Specified by:
type
in interfaceViewRepresentation
-
sql
java.lang.String sql()
The view query SQL text.
-
dialect
java.lang.String dialect()
The view query SQL dialect.
-
-