-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into issue_383_whitespac…
…e_in_password
- Loading branch information
Showing
23 changed files
with
632 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "pg_repack", | ||
"abstract": "PostgreSQL module for data reorganization", | ||
"description": "Reorganize tables in PostgreSQL databases with minimal locks", | ||
"version": "1.5.0", | ||
"version": "1.5.1", | ||
"maintainer": [ | ||
"Beena Emerson <[email protected]>", | ||
"Josh Kupershmidt <[email protected]>", | ||
|
@@ -17,7 +17,7 @@ | |
"provides": { | ||
"pg_repack": { | ||
"file": "lib/pg_repack.sql", | ||
"version": "1.5.0", | ||
"version": "1.5.1", | ||
"abstract": "Reorganize tables in PostgreSQL databases with minimal locks" | ||
} | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env bash | ||
|
||
sudo -u postgres mkdir /tmp/testts /tmp/1testts /tmp/test\ ts /tmp/test\"ts | ||
|
||
sudo -u postgres psql -c "CREATE TABLESPACE testts LOCATION '/tmp/testts'" | ||
sudo -u postgres psql -c "CREATE TABLESPACE \"1testts\" LOCATION '/tmp/1testts'" | ||
sudo -u postgres psql -c "CREATE TABLESPACE \"test ts\" LOCATION '/tmp/test ts'" | ||
sudo -u postgres psql -c "CREATE TABLESPACE \"test\"\"ts\" LOCATION '/tmp/test\"ts'" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
-- | ||
-- tables schema after running repack | ||
-- | ||
\d tbl_cluster | ||
Table "public.tbl_cluster" | ||
Column | Type | Modifiers | ||
--------+-----------------------------+----------- | ||
col1 | integer | not null | ||
time | timestamp without time zone | | ||
,") | text | not null | ||
Indexes: | ||
"tbl_cluster_pkey" PRIMARY KEY, btree (","")", col1) WITH (fillfactor='75') | ||
",") cluster" btree ("time", length(","")"), ","")" text_pattern_ops) WITH (fillfactor='75') CLUSTER | ||
|
||
\d tbl_gistkey | ||
Table "public.tbl_gistkey" | ||
Column | Type | Modifiers | ||
--------+---------+----------- | ||
id | integer | not null | ||
c | circle | | ||
Indexes: | ||
"tbl_gistkey_pkey" PRIMARY KEY, btree (id) | ||
"cidx_circle" gist (c) CLUSTER | ||
|
||
\d tbl_only_ckey | ||
Table "public.tbl_only_ckey" | ||
Column | Type | Modifiers | ||
--------+-----------------------------+----------- | ||
col1 | integer | | ||
col2 | timestamp without time zone | | ||
,") | text | | ||
Indexes: | ||
"cidx_only_ckey" btree (col2, ","")") CLUSTER | ||
|
||
\d tbl_only_pkey | ||
Table "public.tbl_only_pkey" | ||
Column | Type | Modifiers | ||
--------+---------+----------- | ||
col1 | integer | not null | ||
,") | text | | ||
Indexes: | ||
"tbl_only_pkey_pkey" PRIMARY KEY, btree (col1) | ||
|
||
\d tbl_incl_pkey | ||
Table "public.tbl_incl_pkey" | ||
Column | Type | Modifiers | ||
--------+-----------------------------+----------- | ||
col1 | integer | | ||
col2 | timestamp without time zone | | ||
|
||
\d tbl_with_dropped_column | ||
Table "public.tbl_with_dropped_column" | ||
Column | Type | Modifiers | ||
--------+---------+----------- | ||
c1 | text | | ||
id | integer | not null | ||
c2 | text | | ||
c3 | text | | ||
Indexes: | ||
"tbl_with_dropped_column_pkey" PRIMARY KEY, btree (id) WITH (fillfactor='75') CLUSTER | ||
"idx_c1c2" btree (c1, c2) WITH (fillfactor='75') | ||
"idx_c2c1" btree (c2, c1) | ||
|
||
\d tbl_with_dropped_toast | ||
Table "public.tbl_with_dropped_toast" | ||
Column | Type | Modifiers | ||
--------+---------+----------- | ||
i | integer | not null | ||
j | integer | not null | ||
Indexes: | ||
"tbl_with_dropped_toast_pkey" PRIMARY KEY, btree (i, j) CLUSTER | ||
|
||
\d tbl_idxopts | ||
Table "public.tbl_idxopts" | ||
Column | Type | Modifiers | ||
--------+---------+----------- | ||
i | integer | not null | ||
t | text | | ||
Indexes: | ||
"tbl_idxopts_pkey" PRIMARY KEY, btree (i) | ||
"idxopts_t" btree (t DESC NULLS LAST) WHERE t <> 'aaa'::text | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.