From 76b32331815e3e5117911e25b65b372a5551162a Mon Sep 17 00:00:00 2001 From: Jacek Laskowski Date: Fri, 24 May 2024 21:05:33 +0200 Subject: [PATCH] Minor fixes --- docs/configuration-properties/DeltaSQLConf.md | 4 ++++ docs/time-travel/DeltaTimeTravelSpec.md | 6 +++--- docs/time-travel/index.md | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/docs/configuration-properties/DeltaSQLConf.md b/docs/configuration-properties/DeltaSQLConf.md index 1458ca47b3..2365ae27df 100644 --- a/docs/configuration-properties/DeltaSQLConf.md +++ b/docs/configuration-properties/DeltaSQLConf.md @@ -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) diff --git a/docs/time-travel/DeltaTimeTravelSpec.md b/docs/time-travel/DeltaTimeTravelSpec.md index 8a17c5f7d7..9881f39573 100644 --- a/docs/time-travel/DeltaTimeTravelSpec.md +++ b/docs/time-travel/DeltaTimeTravelSpec.md @@ -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) -### Version +### Version ```scala version: Option[Long] @@ -31,7 +31,7 @@ version: Option[Long] `version` is mutually exclusive with the [timestamp](#timestamp) (so only one can be specified). -### Creation Source ID +### Creation Source ID { #creationSource } `DeltaTimeTravelSpec` is given a **Creation Source ID** when [created](#creating-instance). @@ -87,7 +87,7 @@ isApplicable( `isApplicable` is used when `DeltaTableUtils` utility is used to [extractIfPathContainsTimeTravel](../DeltaTableUtils.md#extractIfPathContainsTimeTravel). -### identifierContainsTimeTravel +### identifierContainsTimeTravel { #identifierContainsTimeTravel } ```scala identifierContainsTimeTravel( diff --git a/docs/time-travel/index.md b/docs/time-travel/index.md index 09ff003635..c1fdc25381 100644 --- a/docs/time-travel/index.md +++ b/docs/time-travel/index.md @@ -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.