Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
90e91e24
Commit
90e91e24
authored
Mar 09, 2017
by
Stephen Frost
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pgstattuple: Fix typo partitiond -> partitioned
Pointed out by Michael Paquier
parent
3717dc14
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
contrib/pgstattuple/expected/pgstattuple.out
contrib/pgstattuple/expected/pgstattuple.out
+1
-1
contrib/pgstattuple/sql/pgstattuple.sql
contrib/pgstattuple/sql/pgstattuple.sql
+1
-1
No files found.
contrib/pgstattuple/expected/pgstattuple.out
View file @
90e91e24
...
...
@@ -223,7 +223,7 @@ select pgstatginindex('test_partition');
ERROR: relation "test_partition" is not a GIN index
select pgstathashindex('test_partition');
ERROR: "test_partition" is not an index
-- an actual index of a partitioned table should work though
create index test_partition_idx on test_partition(a);
create index test_partition_hash_idx on test_partition using hash (a);
WARNING: hash indexes are not WAL-logged and their use is discouraged
...
...
contrib/pgstattuple/sql/pgstattuple.sql
View file @
90e91e24
...
...
@@ -103,7 +103,7 @@ select pgstatindex('test_partition');
select
pgstatginindex
(
'test_partition'
);
select
pgstathashindex
(
'test_partition'
);
-- an actual index of a partitioned table should work though
create
index
test_partition_idx
on
test_partition
(
a
);
create
index
test_partition_hash_idx
on
test_partition
using
hash
(
a
);
-- these should work
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment