Skip to content

Commit 73dcc10

Browse files
authored
Merge pull request #4612 from ClickHouse/Blargian-patch-112392
Style: fix indentation in examples
2 parents b73df81 + fb00baf commit 73dcc10

File tree

1 file changed

+18
-19
lines changed

1 file changed

+18
-19
lines changed

docs/cloud/features/08_backups/backups-to-own-cloud/backup_restore_using_commands.md

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ See the [backup command summary](/operations/backup#command-summary) for full ba
5656
```sql
5757
BACKUP DATABASE test_backups
5858
TO S3(
59-
'https://testchbackups.s3.amazonaws.com/<uuid>',
60-
'<key id>',
61-
'<key secret>'
59+
'https://testchbackups.s3.amazonaws.com/<uuid>',
60+
'<key id>',
61+
'<key secret>'
6262
)
6363
```
6464

@@ -74,9 +74,9 @@ For example, if you are taking daily backups, you will need to use a new uuid ea
7474
```sql
7575
RESTORE DATABASE test_backups
7676
FROM S3(
77-
'https://testchbackups.s3.amazonaws.com/<uuid>',
78-
'<key id>',
79-
'<key secret>'
77+
'https://testchbackups.s3.amazonaws.com/<uuid>',
78+
'<key id>',
79+
'<key secret>'
8080
)
8181
```
8282
</TabItem>
@@ -89,9 +89,9 @@ FROM S3(
8989
```sql
9090
BACKUP DATABASE test_backups
9191
TO S3(
92-
'https://storage.googleapis.com/<bucket>/<uuid>',
93-
'<hmac-key>',
94-
'<hmac-secret>'
92+
'https://storage.googleapis.com/<bucket>/<uuid>',
93+
'<hmac-key>',
94+
'<hmac-secret>'
9595
)
9696
```
9797

@@ -107,9 +107,9 @@ For example, if you are taking daily backups, you will need to use a new uuid ea
107107
```sql
108108
RESTORE DATABASE test_backups
109109
FROM S3(
110-
'https://storage.googleapis.com/<bucket>/<uuid>',
111-
'<hmac-key>',
112-
'<hmac-secret>'
110+
'https://storage.googleapis.com/<bucket>/<uuid>',
111+
'<hmac-key>',
112+
'<hmac-secret>'
113113
)
114114
```
115115
</TabItem>
@@ -122,10 +122,9 @@ FROM S3(
122122
```sql
123123
BACKUP DATABASE test_backups
124124
TO AzureBlobStorage(
125-
'<AzureBlobStorage endpoint connection string>',
126-
'<container>',
127-
'<blob>/<>'
128-
);
125+
'<AzureBlobStorage endpoint connection string>',
126+
'<container>',
127+
'<blob>/<>'
129128
)
130129
```
131130

@@ -140,9 +139,9 @@ For example, if you are taking daily backups, you will need to use a new uuid ea
140139
```sql
141140
RESTORE DATABASE test_backups
142141
FROM AzureBlobStorage(
143-
'<AzureBlobStorage endpoint connection string>',
144-
'<container>',
145-
'<blob>/<uuid>'
142+
'<AzureBlobStorage endpoint connection string>',
143+
'<container>',
144+
'<blob>/<uuid>'
146145
)
147146
```
148147
</TabItem>

0 commit comments

Comments
 (0)