Fix bogus size calculation in strlist_to_textarray().

Tom Lane <tgl@sss.pgh.pa.us>

Commit: 737639017c87d5a0a466e8676f1eadc61d775c78
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2017-09-23T19:01:59Z
Releases: 11.0
Fix bogus size calculation in strlist_to_textarray().

It's making an array of Datum, not an array of text *.  The mistake
is harmless since those are currently the same size, but it's still
wrong.

Files

PathChange+/−
src/backend/catalog/objectaddress.c modified +5 −2