-
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7c89c3e
commit 7ee8420
Showing
9 changed files
with
59 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# CheckConstraintsTableFeature | ||
|
||
`CheckConstraintsTableFeature` is...FIXME |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# InvariantsTableFeature | ||
|
||
`InvariantsTableFeature` is...FIXME |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# ColumnMappingTableFeature | ||
|
||
`ColumnMappingTableFeature` is...FIXME |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# GeneratedColumnsTableFeature | ||
|
||
`GeneratedColumnsTableFeature` is...FIXME |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# IdentityColumnsTableFeature | ||
|
||
`IdentityColumnsTableFeature` is a [LegacyWriterFeature](../table-features/LegacyWriterFeature.md) with the following properties: | ||
|
||
Feature Property | Value | ||
-|- | ||
[name](../table-features/LegacyWriterFeature.md#name) | `identityColumns` | ||
[minWriterVersion](../table-features/LegacyWriterFeature.md#minWriterVersion) | 6 | ||
|
||
`IdentityColumnsTableFeature` [can be enabled via table metadata](../table-features/FeatureAutomaticallyEnabledByMetadata.md). | ||
|
||
## metadataRequiresFeatureToBeEnabled { #metadataRequiresFeatureToBeEnabled } | ||
|
||
??? note "FeatureAutomaticallyEnabledByMetadata" | ||
|
||
```scala | ||
metadataRequiresFeatureToBeEnabled( | ||
protocol: Protocol, | ||
metadata: Metadata, | ||
spark: SparkSession): Boolean | ||
``` | ||
|
||
`metadataRequiresFeatureToBeEnabled` is part of the [FeatureAutomaticallyEnabledByMetadata](../table-features/FeatureAutomaticallyEnabledByMetadata.md#metadataRequiresFeatureToBeEnabled) abstraction. | ||
|
||
`metadataRequiresFeatureToBeEnabled` is enabled (`true`) when the [table schema](../Metadata.md#schema) (from the given [Metadata](../Metadata.md)) [has an identity column](../ColumnWithDefaultExprUtils.md#hasIdentityColumn). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
# LegacyWriterFeature | ||
|
||
`LegacyWriterFeature` is...FIXME | ||
## Implementations | ||
|
||
* [AppendOnlyTableFeature](../append-only-tables/AppendOnlyTableFeature.md) | ||
* [ChangeDataFeedTableFeature](../change-data-feed/ChangeDataFeedTableFeature.md) | ||
* [CheckConstraintsTableFeature](../check-constraints/CheckConstraintsTableFeature.md) | ||
* [GeneratedColumnsTableFeature](../generated-columns/GeneratedColumnsTableFeature.md) | ||
* [IdentityColumnsTableFeature](../identity-columns/IdentityColumnsTableFeature.md) | ||
* [InvariantsTableFeature](../column-invariants/InvariantsTableFeature.md) | ||
* `LegacyReaderWriterFeature` |