1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-29 13:56:47 +03:00

Fix array_typanalyze to work for domains over arrays.

Not sure how we missed this case, but we did.  Per bug #7551 from
Diego de Lima.
This commit is contained in:
Tom Lane 2012-09-18 00:31:40 -04:00
parent bcf90cc18b
commit 3f828fae62

View File

@ -19,6 +19,7 @@
#include "commands/vacuum.h" #include "commands/vacuum.h"
#include "utils/array.h" #include "utils/array.h"
#include "utils/datum.h" #include "utils/datum.h"
#include "utils/lsyscache.h"
#include "utils/typcache.h" #include "utils/typcache.h"
@ -108,11 +109,10 @@ array_typanalyze(PG_FUNCTION_ARGS)
PG_RETURN_BOOL(false); PG_RETURN_BOOL(false);
/* /*
* Check attribute data type is a varlena array. * Check attribute data type is a varlena array (or a domain over one).
*/ */
element_typeid = stats->attrtype->typelem; element_typeid = get_base_element_type(stats->attrtypid);
if (!OidIsValid(element_typeid))
if (!OidIsValid(element_typeid) || stats->attrtype->typlen != -1)
elog(ERROR, "array_typanalyze was invoked for non-array type %u", elog(ERROR, "array_typanalyze was invoked for non-array type %u",
stats->attrtypid); stats->attrtypid);