Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit91509e6

Browse files
committed
Small wording improvements for source code READMEs.
1 parent4d048b7 commit91509e6

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

‎src/backend/optimizer/README

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$PostgreSQL: pgsql/src/backend/optimizer/README,v 1.45 2008/04/09 00:59:24 momjian Exp $
1+
$PostgreSQL: pgsql/src/backend/optimizer/README,v 1.46 2008/04/0901:00:46 momjian Exp $
22

33
Optimizer
44
=========
@@ -73,8 +73,8 @@ tree is found by a recursive process:
7373

7474
1) Take each base relation in the query, and make a RelOptInfo structure
7575
for it. Find each potentially useful way of accessing the relation,
76-
including sequential and index scans, and makea Pathrepresentingthat
77-
way. All the Paths made for a given relation are placed in its
76+
including sequential and index scans, and makePathsrepresentingthose
77+
ways. All the Paths made for a given relation are placed in its
7878
RelOptInfo.pathlist. (Actually, we discard Paths that are obviously
7979
inferior alternatives before they ever get into the pathlist --- what
8080
ends up in the pathlist is the cheapest way of generating each potentially
@@ -271,7 +271,7 @@ The primary entry point is planner().
271271

272272
planner()
273273
set up for recursive handling of subqueries
274-
do final cleanup after planning.
274+
do final cleanup after planning
275275
-subquery_planner()
276276
pull up subqueries from rangetable, if possible
277277
canonicalize qual

‎src/backend/parser/README

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$PostgreSQL: pgsql/src/backend/parser/README,v 1.9 2008/04/09 00:59:24 momjian Exp $
1+
$PostgreSQL: pgsql/src/backend/parser/README,v 1.10 2008/04/0901:00:46 momjian Exp $
22

33
Parser
44
======
@@ -14,13 +14,13 @@ keywords.cturn keywords into specific tokens
1414
gram.yparse the tokens and fill query-type-specific structures
1515
analyze.ctop level of parse analysis for optimizable queries
1616
parse_clause.chandle clauses like WHERE, ORDER BY, GROUP BY, ...
17-
parse_coerce.chandle coercing expressions to different types
17+
parse_coerce.chandle coercing expressions to differentdatatypes
1818
parse_expr.chandle expressions like col, col + 3, x = 3 or x = 4
1919
parse_oper.chandle operators in expressions
2020
parse_agg.chandle aggregates, like SUM(col1), AVG(col2), ...
2121
parse_func.chandle functions, table.column and column identifiers
2222
parse_node.ccreate nodes for various structures
2323
parse_target.chandle the result list of the query
2424
parse_relation.c support routines for tables and column handling
25-
parse_type.csupport routines for type handling
25+
parse_type.csupport routines fordatatype handling
2626
parse_utilcmd.cparse analysis for utility commands (done at execution time)

‎src/backend/utils/mmgr/README

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
$PostgreSQL: pgsql/src/backend/utils/mmgr/README,v 1.14 2008/04/09 00:59:24 momjian Exp $
1+
$PostgreSQL: pgsql/src/backend/utils/mmgr/README,v 1.15 2008/04/0901:00:46 momjian Exp $
22

33
Notes About Memory Allocation Redesign
44
======================================
55

66
Up through version 7.0, Postgres had serious problems with memory leakage
77
during large queries that process a lot of pass-by-reference data. There
8-
was no provision for recycling memory until end of query. Thisneeds to be
9-
fixed, even more so with the advent of TOAST which willallow very large
8+
was no provision for recycling memory until end of query. Thisneeded to be
9+
fixed, even more so with the advent of TOAST which willallowed very large
1010
chunks of data to be passed around in the system. This document describes
11-
the new memory managementplan implemented in 7.1.
11+
the new memory managementsystem implemented in 7.1.
1212

1313

1414
Background

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp