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
Allow named parameters to be specified using => in addition to :=
SQL has standardized on => as the use of to specify named parameters,and we've wanted for many years to support the same syntax ourselves,but this has been complicated by the possible use of => as an operatorname. In PostgreSQL 9.0, we began emitting a warning when an operatornamed => was defined, and in PostgreSQL 9.2, we stopped shipping a=>(text, text) operator as part of hstore. By the time the next majorversion of PostgreSQL is released, => will have been deprecated for afull five years, so hopefully there won't be too many people stillrelying on it. We continue to support := for compatibility withprevious PostgreSQL releases.Pavel Stehule, reviewed by Petr Jelinek, with a few documentationtweaks by me.