Re: [DOCS] Missing doc for operator args in alter extension

2011-06-13 Thread Robert Haas
On Thu, Apr 7, 2011 at 9:49 PM, Tom Lane wrote: > Robert Haas writes: >> On Mon, Apr 4, 2011 at 9:10 PM, Daniele Varrazzo >> wrote: >>> the documentation for ALTER EXTENSION is missing the description for >>> the arguments of the form ADD OPERATOR name (left_type, right_type). > >> I think we mi

Re: [DOCS] Missing doc for operator args in alter extension

2011-04-07 Thread Tom Lane
Robert Haas writes: > On Mon, Apr 4, 2011 at 9:10 PM, Daniele Varrazzo > wrote: >> the documentation for ALTER EXTENSION is missing the description for >> the arguments of the form ADD OPERATOR name (left_type, right_type). > I think we might want to make the synopsis, as well as the description

Re: [DOCS] Missing doc for operator args in alter extension

2011-04-05 Thread Robert Haas
On Mon, Apr 4, 2011 at 9:10 PM, Daniele Varrazzo wrote: > Hello, > > the documentation for ALTER EXTENSION is missing the description for > the arguments of the form ADD OPERATOR name (left_type, right_type). > > Albeit it's pretty obvious what they are, it is not so obvious what to > do for unary

[DOCS] Missing doc for operator args in alter extension

2011-04-04 Thread Daniele Varrazzo
Hello, the documentation for ALTER EXTENSION is missing the description for the arguments of the form ADD OPERATOR name (left_type, right_type). Albeit it's pretty obvious what they are, it is not so obvious what to do for unary operators (i.e. replace the type on the missing side with NONE). Pa