Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python API for restoring delta table #903

Closed

Commits on Jan 26, 2022

  1. Python API for restoring delta table

     * Add possibility to restore delta table using version or timestamp from pyspark
       Examples:
       ```
       DeltaTable.forPath(spark, path).restoreToVersion(0)
       DeltaTable.forPath(spark, path).restoreToTimestamp('2021-01-01 01:01-01')
       ```
    
    Fixes delta-io#890
    
    Signed-off-by: Maksym Dovhal <maksym.dovhal@gmail.com>
    Maksym Dovhal committed Jan 26, 2022
    Configuration menu
    Copy the full SHA
    f5af1c6 View commit details
    Browse the repository at this point in the history
  2. Fixed code style (E501 line too long)

    Maksym Dovhal committed Jan 26, 2022
    Configuration menu
    Copy the full SHA
    8fcbe49 View commit details
    Browse the repository at this point in the history