You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Create a 'type cache' that keeps track of the data needed for any particular
datatype by array_eq and array_cmp; use this to solve problems with memoryleaks in array indexing support. The parser's equality_oper and ordering_operroutines also use the cache. Change the operator search algorithms to lookfor appropriate btree or hash index opclasses, instead of assuming operatorsnamed '<' or '=' have the right semantics. (ORDER BY ASC/DESC now also lookat opclasses, instead of assuming '<' and '>' are the right things.) Addseveral more index opclasses so that there is no regression in functionalityfor base datatypes. initdb forced due to catalog additions.