-
Notifications
You must be signed in to change notification settings - Fork 6.9k
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
Add support for reading and writing backups as tar archives #59535
Conversation
2ad74ad
to
d7aa0eb
Compare
This is an automated comment for commit 58a8658 with description of existing statuses. It's updated for the latest CI running ❌ Click here to open a full report in a separate page Successful checks
|
abaead6
to
aa55469
Compare
d2eaed7
to
7f492cd
Compare
@josh-hildred can you please update the branch with master one more time just so I see that checks are okay |
tar archive using libarchive.
Co-authored-by: ltrk2 <107155950+ltrk2@users.noreply.github.com>
Co-authored-by: Antonio Andelic <antonio2368@users.noreply.github.com>
Co-authored-by: Antonio Andelic <antonio2368@users.noreply.github.com>
Co-authored-by: Antonio Andelic <antonio2368@users.noreply.github.com>
Co-authored-by: Antonio Andelic <antonio2368@users.noreply.github.com>
Co-authored-by: Antonio Andelic <antonio2368@users.noreply.github.com>
Co-authored-by: Antonio Andelic <antonio2368@users.noreply.github.com>
Co-authored-by: Antonio Andelic <antonio2368@users.noreply.github.com>
Co-authored-by: Antonio Andelic <antonio2368@users.noreply.github.com>
Co-authored-by: Antonio Andelic <antonio2368@users.noreply.github.com>
Co-authored-by: Antonio Andelic <antonio2368@users.noreply.github.com>
Co-authored-by: Antonio Andelic <antonio2368@users.noreply.github.com>
7f492cd
to
58a8658
Compare
Thank you @antonio2368 for helping get this across the line! |
Thanks for implementing this @josh-hildred! And with clean code and good tests, can't ask for more. 😄 |
Changelog category (leave one):
Changelog entry (a user-readable short description of the changes that goes to CHANGELOG.md):
Support reading and writing backups as tar archives.
Documentation entry for user-facing changes
This change allows tables to be backed up as tar archives. I.E
BACKUP TABLE test.table TO Disk('backups', '1.tar')
andRESTORE TABLE test.table FROM Disk('backups', '1.tar')
. Compressing the archives and setting passwords is not currently supported.