You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is one restore method in the interface that serves double duty: it restores full database backups (including data) and it also restores snapshots (DDL only). Backups can often be done more efficiently than a snapshot, i.e. a SQLite database can be backed up by copying a file and Postgres has a binary database backup format. However, because there is only one restore command, backups must be written as SQL files. If there were separate "restore backup" and "restore snapshot" methods, then "restore backup" could use the more efficient approach, and "restore snapshot" would use SQL files.
The text was updated successfully, but these errors were encountered:
There is one restore method in the interface that serves double duty: it restores full database backups (including data) and it also restores snapshots (DDL only). Backups can often be done more efficiently than a snapshot, i.e. a SQLite database can be backed up by copying a file and Postgres has a binary database backup format. However, because there is only one restore command, backups must be written as SQL files. If there were separate "restore backup" and "restore snapshot" methods, then "restore backup" could use the more efficient approach, and "restore snapshot" would use SQL files.
The text was updated successfully, but these errors were encountered: