Commit Graph

421 Commits

Author SHA1 Message Date
fe519cf017 Dropped further libs not needed for build 2017-03-23 18:50:22 +00:00
81cca1836b Fixed docs reST formatting
In Japanese too! ツ
2017-03-23 18:12:33 +00:00
9bef0d4fa7 Added new features to release 1.4 2017-03-23 17:42:39 +00:00
3c717c3509 Bump to development line 1.4 2017-03-23 17:32:59 +00:00
a6cbf0577b Merge pull request #118 from MasahikoSawada/fix_doc_jp
Update pg_repack_jp.rst
2017-03-23 20:07:12 +03:00
3419422786 update docs 2017-03-23 16:39:58 +03:00
c62488ae13 add regression tests for --exclude-extension (-C) 2017-03-23 16:26:46 +03:00
e1f41aa6d8 add new option checks for -C 2017-03-23 16:05:59 +03:00
1ecec8ce95 change option to '--exclude-extension' 2017-03-23 15:24:41 +03:00
e89559a813 resolve conflicts 2017-03-23 14:14:18 +03:00
462c37c57e Update pg_repack_jp.rst
Since v1.3.3, when Japanese doc has been introduced, this
file had not been maintained.
2017-03-23 10:50:02 +09:00
5507a57d05 improve docs 2017-03-22 16:34:08 +03:00
698d1ddfdd update docs 2017-03-22 16:32:11 +03:00
6a51ed209d add regression tests for '--parent-table' option 2017-03-22 15:04:27 +03:00
0e3ed0d5e1 fix typos and formatting, implement -I in repack_all_indexes() 2017-03-22 14:15:48 +03:00
68dc592545 introduce option --parent-table (-I, stands for 'inheritance'), fix function repack_one_database(), introduce function repack.get_table_and_inheritors() 2017-03-20 23:05:26 +03:00
7c8e272b54 Merge pull request #114 from bossartn/no_superuser_check
Introduce --no-superuser-check option.
2017-03-08 10:49:11 +09:00
1f784089a6 Added regression testing for --no-superuser-check option. 2017-03-02 02:58:41 +00:00
7471eeaa0c Merge branch 'master' into no_superuser_check 2017-03-01 08:34:29 -08:00
b329f9e143 Merge pull request #108 from MasahikoSawada/dont_kill_backend
Introduce --no-kill-backend option.
2017-02-23 09:39:36 +09:00
9ef8f9f80b Improve error message more explicitely when time out.
This change distinguishes error message between failed to cancel
query due to time out and abandoning to cancel query due to timeout.
2017-02-22 06:03:54 +00:00
d1d3d774d3 Update Japanese documentation for no-kill-backend option. 2017-02-22 06:03:09 +00:00
f6c1304c36 Change the option name to no-kill-backend.
For consistency with other slimilar option such as no-order,
no-analyze.
2017-02-22 03:49:04 +00:00
5781aabb61 Merge pull request #107 from MasahikoSawada/change_to_after_trigger
Change trigger type to AFTER trigger.
2017-02-22 12:08:32 +09:00
b16886d4ea Merge pull request #116 from MasahikoSawada/fix_format_ident
Change format identifier %lu to UINT64_FORMAT for portability.
2017-02-22 00:06:01 +09:00
0ee4dca044 Merge pull request #115 from cpaelzer/fix-feb2017-pg-microrelease
Fix 'tablespace' regression test for latest postgres minor releases
2017-02-21 08:52:18 -05:00
e8d6b6b97f Change format identifier %lu in pgut.c file. 2017-02-21 12:23:18 +00:00
b9219be7d8 Change format identifier to UINT64_FORMAT.
Change it for portability.
2017-02-21 16:20:38 +09:00
02ced4650a drop Debian specific content from tablespace_2.out
Signed-off-by: Christian Ehrhardt <christian.ehrhardt@canonical.com>
2017-02-20 09:13:58 +01:00
b85831ea65 Add a variant expected output for the 'tablespace' regression test
The recent stable update changed output for calls to
repack.repack_indexdef with the third arg being NULL.

Output gets an additional "TABLESPACE pg_default". So add
another variant of expected output to cover 9.6.2, 9.5.6,
9.4.11 and 9.3.16.

Stable update at https://www.postgresql.org/about/news/1733/

Signed-off-by: Christian Ehrhardt <christian.ehrhardt@canonical.com>
2017-02-15 11:30:58 +01:00
168676b3b6 Introduce --no-superuser-check option.
The current client checks for superuser before attempting to
execute pg_repack commands. In Amazon RDS, customers are given
access to a psuedo-superuser role called rds_superuser, but they
are not given access to superuser. However, rds_superusers will
otherwise have the ability to execute pg_repack commands in RDS.

This change introduces the --no-superuser-check option in the
client code so that users can disable the client-side superuser
checks.
2017-02-15 03:15:03 +00:00
dfbedb63d9 Merge pull request #110 from MasahikoSawada/change_format_identifier
Change format identifier of SPI_processed to uint64.
2017-02-02 22:36:47 -05:00
bacf197a7b Change format identifier of SPI_processed to uint64.
Because commit 23a27b039d94ba359286694831eafe03cd970eef has extended the
type of SPI_processed from uint32 to uint64, pg_repack emit warning when
compiling with PostgreSQL 9.6 or later. To fix that, we cast it to uint64
and change format identifier from %d to %lu.
2017-02-02 23:42:44 +09:00
ff8cb96c74 Add white space to COUNT_COMPETING_LOCKS sql.
Pointed out by schmiddy.
2017-02-02 19:59:18 +09:00
34c6506f54 Introduce --dont-kill-backend option.
pg_repack needs to take an exclusive lock at the end of the
reorganization. If the lock cannot be taken after duration
--wait-timeout option specified and this option is true,
pg_repack gives up to repack a target table instead of
cancelling conflicting backend. False by default.
2017-01-24 14:47:00 +09:00
375f03c0c3 Change trigger name from a_repack_trigger to repack_trigger.
In AFTER trigger context, since triggered tuple is not changed by
any other triggers we can call it just repack_trigger.
2017-01-24 14:09:05 +09:00
d83ee3d6a0 Change trigger type to AFTER trigger.
During repacking table, if a transaction executes INSERT CONFLICT
ON UPDATE/DO NOTHING, because we define BEFORE trigger on target
table, the contents of operation log table becomes inconsistent
easliy. As a result, pg_reapck fails with a high probability.

To resolve this issue, this changes the trigger type from BEFORE
to AFTER. We define AFTER trigger that is the first of the AFTER
trigger to fire on the table.
2017-01-19 16:32:54 +09:00
e1056c003c Merge pull request #104 from MasahikoSawada/support_9_6
Add 9.6 to list as a supported Postgres version.
2017-01-17 08:54:33 -05:00
6cadd7d97d Add 9.6 to list as a supported Postgres version.
Since 9.5 is not listed yet in pg_repack_jp.rst added 9.5 as well.
2017-01-17 14:28:21 +09:00
116fa68097 set 'include_extensions' to true if tables have been specified 2016-10-24 16:54:32 +03:00
20beaf99f2 introduce new option 'include-extensions' which is aimed to prevent pg_repack from touching tables that belong to extensions 2016-10-24 16:11:12 +03:00
8711ae5b2a Merge branch 'master' of github.com:reorg/pg_repack 2016-08-05 13:26:18 -07:00
6e9ccbd8a0 Remember to list 9.5 as a supported Postgres version. 2016-08-05 13:25:08 -07:00
8db0f58daf Merge pull request #87 from postgrespro/vacuum_fix
Don't wait for concurrent vacuums
2016-08-05 13:12:06 -07:00
8e50927946 Comment about VACUUM. 2016-07-03 22:42:17 +03:00
3b0ef954cf Fix. 2016-07-03 21:19:45 +03:00
fe659b0e4a Version bump for 1.3.4 2016-05-07 09:44:26 -04:00
b8b18c0cc9 Prep release notes for release 1.3.4. 2016-05-07 09:43:28 -04:00
602bf2944a .gitignore for lib/exports.list 2016-05-07 09:25:30 -04:00
eb2e9c39fb Whitespace cleanup. 2016-05-07 09:24:05 -04:00