@@ -174,8 +174,9 @@ Options to connect to servers. You cannot use ``--all`` and ``--dbname`` or
174
174
``-w ``, ``--no-password ``
175
175
Never issue a password prompt. If the server requires password
176
176
authentication and a password is not available by other means such as a
177
- .pgpass file, the connection attempt will fail. This option can be useful
178
- in batch jobs and scripts where no user is present to enter a password.
177
+ ``.pgpass `` file, the connection attempt will fail. This option can be
178
+ useful in batch jobs and scripts where no user is present to enter a
179
+ password.
179
180
180
181
``-W ``, ``--password ``
181
182
Force the program to prompt for a password before connecting to a
@@ -309,23 +310,23 @@ DDL commands
309
310
^^^^^^^^^^^^
310
311
311
312
You cannot do DDL commands **except ** VACUUM and ANALYZE during pg_repack. In many
312
- cases pg_repack will fail and rollback collectly , but there are some cases
313
- which may result in data-corruption .
313
+ cases pg_repack will fail and rollback correctly , but there are some cases
314
+ which may result in data corruption .
314
315
315
316
TRUNCATE
316
317
TRUNCATE is lost. Deleted rows still exist after pg_repack.
317
318
318
319
CREATE INDEX
319
- It causes index corruptions .
320
+ It causes index corruption .
320
321
321
322
ALTER TABLE ... ADD COLUMN
322
- It causes lost of data. Newly added columns are initialized with NULLs.
323
+ It causes loss of data. Newly added columns are initialized with NULLs.
323
324
324
325
ALTER TABLE ... ALTER COLUMN TYPE
325
- It causes data corruptions .
326
+ It causes data corruption .
326
327
327
328
ALTER TABLE ... SET TABLESPACE
328
- It causes data corruptions by wrong relfilenode.
329
+ It causes data corruption by wrong relfilenode.
329
330
330
331
331
332
Details
0 commit comments