Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jaceklaskowski committed May 24, 2024
1 parent 1fd7139 commit 76b3233
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions docs/configuration-properties/DeltaSQLConf.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@

[spark.databricks.delta.streaming.unsafeReadOnIncompatibleColumnMappingSchemaChanges.enabled](index.md#streaming.unsafeReadOnIncompatibleColumnMappingSchemaChanges.enabled)

## timeTravel.resolveOnIdentifier.enabled { #RESOLVE_TIME_TRAVEL_ON_IDENTIFIER }

[spark.databricks.delta.timeTravel.resolveOnIdentifier.enabled](index.md#timeTravel.resolveOnIdentifier.enabled)

## write.txnVersion.autoReset.enabled { #DELTA_IDEMPOTENT_DML_AUTO_RESET_ENABLED }

[spark.databricks.delta.write.txnVersion.autoReset.enabled](index.md#write.txnVersion.autoReset.enabled)
6 changes: 3 additions & 3 deletions docs/time-travel/DeltaTimeTravelSpec.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* `DeltaDataSource` utility is used to [getTimeTravelVersion](../spark-connector/DeltaDataSource.md#getTimeTravelVersion)
* `DeltaSource` is requested to for the [getStartingVersion](../spark-connector/DeltaSource.md#getStartingVersion)

### <span id="version"> Version
### Version

```scala
version: Option[Long]
Expand All @@ -31,7 +31,7 @@ version: Option[Long]

`version` is mutually exclusive with the [timestamp](#timestamp) (so only one can be specified).

### <span id="creationSource"> Creation Source ID
### Creation Source ID { #creationSource }

`DeltaTimeTravelSpec` is given a **Creation Source ID** when [created](#creating-instance).

Expand Down Expand Up @@ -87,7 +87,7 @@ isApplicable(

`isApplicable` is used when `DeltaTableUtils` utility is used to [extractIfPathContainsTimeTravel](../DeltaTableUtils.md#extractIfPathContainsTimeTravel).

### <span id="identifierContainsTimeTravel"> identifierContainsTimeTravel
### identifierContainsTimeTravel { #identifierContainsTimeTravel }

```scala
identifierContainsTimeTravel(
Expand Down
2 changes: 1 addition & 1 deletion docs/time-travel/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ hide:

# Time Travel

Delta Lake supports **time travelling** which is loading a Delta table at a given version or timestamp (defined by [path](../spark-connector/options.md#path), [versionAsOf](../spark-connector/options.md#versionAsOf) or [timestampAsOf](../spark-connector/options.md#timestampAsOf) options).
Delta Lake supports **Time Travelling** which is loading a Delta table at a given version or timestamp (defined by [path](../spark-connector/options.md#path), [versionAsOf](../spark-connector/options.md#versionAsOf) or [timestampAsOf](../spark-connector/options.md#timestampAsOf) options).

Delta Lake allows `path` option to include [time travel](../DeltaTableUtils.md#extractIfPathContainsTimeTravel) patterns (`@v123` and `@yyyyMMddHHmmssSSS`) unless the internal [spark.databricks.delta.timeTravel.resolveOnIdentifier.enabled](../configuration-properties/DeltaSQLConf.md#timeTravel.resolveOnIdentifier.enabled) configuration property is turned off.

Expand Down

0 comments on commit 76b3233

Please # to comment.