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
5a366b4f
Commit
5a366b4f
authored
Jan 25, 2017
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typo: pg_statistics -> pg_statistic
parent
f7c62462
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
doc/src/sgml/planstats.sgml
doc/src/sgml/planstats.sgml
+1
-1
doc/src/sgml/release-7.4.sgml
doc/src/sgml/release-7.4.sgml
+1
-1
doc/src/sgml/release-old.sgml
doc/src/sgml/release-old.sgml
+2
-2
src/backend/postmaster/autovacuum.c
src/backend/postmaster/autovacuum.c
+1
-1
src/backend/utils/cache/lsyscache.c
src/backend/utils/cache/lsyscache.c
+1
-1
No files found.
doc/src/sgml/planstats.sgml
View file @
5a366b4f
...
@@ -94,7 +94,7 @@ EXPLAIN SELECT * FROM tenk1 WHERE unique1 < 1000;
...
@@ -94,7 +94,7 @@ EXPLAIN SELECT * FROM tenk1 WHERE unique1 < 1000;
and the entry in this case is <function>scalarltsel</function>.
and the entry in this case is <function>scalarltsel</function>.
The <function>scalarltsel</function> function retrieves the histogram for
The <function>scalarltsel</function> function retrieves the histogram for
<structfield>unique1</structfield> from
<structfield>unique1</structfield> from
<structname>pg_statistic
s
</structname>. For manual queries it is more
<structname>pg_statistic</structname>. For manual queries it is more
convenient to look in the simpler <structname>pg_stats</structname>
convenient to look in the simpler <structname>pg_stats</structname>
view:
view:
...
...
doc/src/sgml/release-7.4.sgml
View file @
5a366b4f
...
@@ -2614,7 +2614,7 @@ UPDATE pg_database SET datallowconn = false WHERE datname = 'template0';
...
@@ -2614,7 +2614,7 @@ UPDATE pg_database SET datallowconn = false WHERE datname = 'template0';
</para>
</para>
<itemizedlist>
<itemizedlist>
<listitem><para>Fix <structname>pg_statistic
s
</> alignment bug that could crash optimizer</para>
<listitem><para>Fix <structname>pg_statistic</> alignment bug that could crash optimizer</para>
<para>See above for details about this problem.</para></listitem>
<para>See above for details about this problem.</para></listitem>
<listitem><para>Allow non-super users to update <structname>pg_settings</></para></listitem>
<listitem><para>Allow non-super users to update <structname>pg_settings</></para></listitem>
<listitem><para>Fix several optimizer bugs, most of which led to
<listitem><para>Fix several optimizer bugs, most of which led to
...
...
doc/src/sgml/release-old.sgml
View file @
5a366b4f
...
@@ -1650,7 +1650,7 @@ operations on bytea columns (Joe)</para></listitem>
...
@@ -1650,7 +1650,7 @@ operations on bytea columns (Joe)</para></listitem>
<listitem><para>Add variable db_user_namespace for database-local user names (Bruce)</para></listitem>
<listitem><para>Add variable db_user_namespace for database-local user names (Bruce)</para></listitem>
<listitem><para>SSL improvements (Bear Giles)</para></listitem>
<listitem><para>SSL improvements (Bear Giles)</para></listitem>
<listitem><para>Make encryption of stored passwords the default (Bruce)</para></listitem>
<listitem><para>Make encryption of stored passwords the default (Bruce)</para></listitem>
<listitem><para>Allow pg_statistic
s
to be reset by calling pg_stat_reset() (Christopher)</para></listitem>
<listitem><para>Allow pg_statistic to be reset by calling pg_stat_reset() (Christopher)</para></listitem>
<listitem><para>Add log_duration parameter (Bruce)</para></listitem>
<listitem><para>Add log_duration parameter (Bruce)</para></listitem>
<listitem><para>Rename debug_print_query to log_statement (Bruce)</para></listitem>
<listitem><para>Rename debug_print_query to log_statement (Bruce)</para></listitem>
<listitem><para>Rename show_query_stats to show_statement_stats (Bruce)</para></listitem>
<listitem><para>Rename show_query_stats to show_statement_stats (Bruce)</para></listitem>
...
@@ -3893,7 +3893,7 @@ Faster sorting by calling fewer functions (Tom)
...
@@ -3893,7 +3893,7 @@ Faster sorting by calling fewer functions (Tom)
Create system indexes to match all system caches (Bruce, Hiroshi)
Create system indexes to match all system caches (Bruce, Hiroshi)
Make system caches use system indexes (Bruce)
Make system caches use system indexes (Bruce)
Make all system indexes unique (Bruce)
Make all system indexes unique (Bruce)
Improve pg_statistic
s
management for VACUUM speed improvement (Tom)
Improve pg_statistic management for VACUUM speed improvement (Tom)
Flush backend cache less frequently (Tom, Hiroshi)
Flush backend cache less frequently (Tom, Hiroshi)
COPY now reuses previous memory allocation, improving performance (Tom)
COPY now reuses previous memory allocation, improving performance (Tom)
Improve optimization cost estimation (Tom)
Improve optimization cost estimation (Tom)
...
...
src/backend/postmaster/autovacuum.c
View file @
5a366b4f
...
@@ -2876,7 +2876,7 @@ relation_needs_vacanalyze(Oid relid,
...
@@ -2876,7 +2876,7 @@ relation_needs_vacanalyze(Oid relid,
*
doanalyze
=
false
;
*
doanalyze
=
false
;
}
}
/* ANALYZE refuses to work with pg_statistic
s
*/
/* ANALYZE refuses to work with pg_statistic */
if
(
relid
==
StatisticRelationId
)
if
(
relid
==
StatisticRelationId
)
*
doanalyze
=
false
;
*
doanalyze
=
false
;
}
}
...
...
src/backend/utils/cache/lsyscache.c
View file @
5a366b4f
...
@@ -2832,7 +2832,7 @@ get_attavgwidth(Oid relid, AttrNumber attnum)
...
@@ -2832,7 +2832,7 @@ get_attavgwidth(Oid relid, AttrNumber attnum)
* that have been provided by a stats hook and didn't really come from
* that have been provided by a stats hook and didn't really come from
* pg_statistic.
* pg_statistic.
*
*
* statstuple: pg_statistic
s
tuple to be examined.
* statstuple: pg_statistic tuple to be examined.
* atttype: type OID of attribute (can be InvalidOid if values == NULL).
* atttype: type OID of attribute (can be InvalidOid if values == NULL).
* atttypmod: typmod of attribute (can be 0 if values == NULL).
* atttypmod: typmod of attribute (can be 0 if values == NULL).
* reqkind: STAKIND code for desired statistics slot kind.
* reqkind: STAKIND code for desired statistics slot kind.
...
...
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