Joe, > This is correct. There are no dimensions to an empty array by > definition. The only other way to handle this would be an ERROR. I > followed the lead of (the pre-existing function) array_dims() when > creating array_upper() and array_lower().
What about a 0? That seems more consistent to me. If the array is empty, its dimensions are not "NULL", meaning "unknown", but in fact zero elements, which is a known value. The way it works now, array_upper on a NULL array produces the same results as array_upper on an empty-but-non-null array. Or is there some concept I'm missing? -- -Josh Berkus Aglio Database Solutions San Francisco ---------------------------(end of broadcast)--------------------------- TIP 9: the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match