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
017b2e98
Commit
017b2e98
authored
Oct 03, 2014
by
Robert Haas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos in comments.
Etsuro Fujita
parent
9019264f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/backend/rewrite/rewriteHandler.c
src/backend/rewrite/rewriteHandler.c
+2
-2
No files found.
src/backend/rewrite/rewriteHandler.c
View file @
017b2e98
...
@@ -884,13 +884,13 @@ process_matched_tle(TargetEntry *src_tle,
...
@@ -884,13 +884,13 @@ process_matched_tle(TargetEntry *src_tle,
* UPDATE tab SET col.fld1.subfld1 = x, col.fld2.subfld2 = y
* UPDATE tab SET col.fld1.subfld1 = x, col.fld2.subfld2 = y
* The two expressions produced by the parser will look like
* The two expressions produced by the parser will look like
* FieldStore(col, fld1, FieldStore(placeholder, subfld1, x))
* FieldStore(col, fld1, FieldStore(placeholder, subfld1, x))
* FieldStore(col, fld2, FieldStore(placeholder, subfld2,
x
))
* FieldStore(col, fld2, FieldStore(placeholder, subfld2,
y
))
* However, we can ignore the substructure and just consider the top
* However, we can ignore the substructure and just consider the top
* FieldStore or ArrayRef from each assignment, because it works to
* FieldStore or ArrayRef from each assignment, because it works to
* combine these as
* combine these as
* FieldStore(FieldStore(col, fld1,
* FieldStore(FieldStore(col, fld1,
* FieldStore(placeholder, subfld1, x)),
* FieldStore(placeholder, subfld1, x)),
* fld2, FieldStore(placeholder, subfld2,
x
))
* fld2, FieldStore(placeholder, subfld2,
y
))
* Note the leftmost expression goes on the inside so that the
* Note the leftmost expression goes on the inside so that the
* assignments appear to occur left-to-right.
* assignments appear to occur left-to-right.
*
*
...
...
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