]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Remove unused argument "isSlice" from transformAssignmentSubscripts()
authorMichael Paquier <michael@paquier.xyz>
Sun, 18 Sep 2022 06:33:16 +0000 (15:33 +0900)
committerMichael Paquier <michael@paquier.xyz>
Sun, 18 Sep 2022 06:33:16 +0000 (15:33 +0900)
commit9f65aaa408f60081a057f559b717100b55511698
tree017adb84425eb81b6392e0cc0bef9b9d502607f7
parent035ce1feb2ed27680558ebc5cd1455041c8ec3cf
Remove unused argument "isSlice" from transformAssignmentSubscripts()

Since c7aba7c, the transform method used during parse analysis of a
subcripting construct has moved from transformAssignmentSubscripts() to
the per-type transform method (arrays or arbitrary types) the step that
checks for slicing support, but transformAssignmentSubscripts() has kept
traces of it.  Removing it simplifies the code, so let's clean up all
that.

Author: Zhang Mingli
Reviewed-by: Richard Guo
Discussion: https://postgr.es/m/0d7041ac-c704-48ad-86fd-e05feddf08ed@Spark
src/backend/parser/parse_target.c