Commit 017b2e98 authored by Robert Haas's avatar Robert Haas

Fix typos in comments.

Etsuro Fujita
parent 9019264f
...@@ -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.
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment