Skip to content

Commit

Permalink
SupportsAtomicPartitionManagement
Browse files Browse the repository at this point in the history
  • Loading branch information
jaceklaskowski committed Jun 5, 2021
1 parent ab0d01e commit de071c8
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion docs/connector/SupportsAtomicPartitionManagement.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
# SupportsAtomicPartitionManagement

`SupportsAtomicPartitionManagement` is...FIXME
`SupportsAtomicPartitionManagement` is an [extension](#contract) of the [SupportsPartitionManagement](SupportsPartitionManagement.md) abstraction for partitioned tables.

## Contract

### <span id="createPartitions"> createPartitions

```java
void createPartitions(
InternalRow[] idents,
Map<String, String>[] properties)
```

Used when:

* `AlterTableAddPartitionExec` physical operator is executed

### <span id="dropPartitions"> dropPartitions

```java
boolean dropPartitions(
InternalRow[] idents)
```

Used when:

* `AlterTableDropPartitionExec` physical operator is executed

0 comments on commit de071c8

Please sign in to comment.