From b01b053e63b8dd9332f58b9df4279cf33ce81719 Mon Sep 17 00:00:00 2001 From: mrchatam Date: Sun, 13 Sep 2026 03:50:18 +0000 Subject: [PATCH] docs: remove duplicate 'the' in RESTORE destination note --- src/current/v26.2/restore.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/current/v26.2/restore.md b/src/current/v26.2/restore.md index a4aa9848e15..d9ede288152 100644 --- a/src/current/v26.2/restore.md +++ b/src/current/v26.2/restore.md @@ -201,7 +201,7 @@ You can also restore individual tables (which automatically includes their index By default, tables, views, and sequences are restored into a destination database matching the name of the database from which they were backed up. If the destination database does not exist, you must [create it]({% link {{ page.version.version }}/create-database.md %}). You can choose to change the destination database with the [`into_db` option](#into_db). -The destination database must not have tables, views, or sequences with the same name as the the object you're restoring. If any of the restore destination's names are being used, you can: +The destination database must not have tables, views, or sequences with the same name as the object you're restoring. If any of the restore destination's names are being used, you can: - [`DROP TABLE`]({% link {{ page.version.version }}/drop-table.md %}), [`DROP VIEW`]({% link {{ page.version.version }}/drop-view.md %}), or [`DROP SEQUENCE`]({% link {{ page.version.version }}/drop-sequence.md %}) and then restore them. Note that a sequence cannot be dropped while it is being used in a column's `DEFAULT` expression, so those expressions must be dropped before the sequence is dropped, and recreated after the sequence is recreated. The `setval` [function]({% link {{ page.version.version }}/functions-and-operators.md %}#sequence-functions) can be used to set the value of the sequence to what it was previously. - [Restore the table, view, or sequence into a different database](#into_db).