Package org.apache.flink.table.catalog
Interface TableChange.ColumnPosition
-
- All Known Implementing Classes:
TableChange.After
,TableChange.First
- Enclosing interface:
- TableChange
@PublicEvolving public static interface TableChange.ColumnPosition
The position of the modified or added column.
-
-
Method Summary
Static Methods Modifier and Type Method Description static TableChange.ColumnPosition
after(String column)
Get the position to place the column after the specified column.static TableChange.ColumnPosition
first()
Get the position to place the column at the first.
-
-
-
Method Detail
-
first
static TableChange.ColumnPosition first()
Get the position to place the column at the first.
-
after
static TableChange.ColumnPosition after(String column)
Get the position to place the column after the specified column.
-
-