linkend="datatype-pseudo">) are considered preferred, the parser cannot
-resolve the ambiguity on that basis. However, the last resolution rule tells
+resolve the ambiguity on that basis.
+However, tells
it to assume that the unknown-type literal is of the same type as the other
input, that is, integer array. Now only one of the two operators can match,
so array inclusion is selected. (Had range inclusion been selected, we would
+
+
Custom Operator on a Domain Type
+
+Users sometimes try to declare operators applying just to a domain type.
+This is possible but is not nearly as useful as it might seem, because the
+operator resolution rules are designed to select operators applying to the
+domain's base type. As an example consider
+
+CREATE DOMAIN mytext AS text CHECK(...);
+CREATE FUNCTION mytext_eq_text (mytext, text) RETURNS boolean AS ...;
+CREATE OPERATOR = (procedure=mytext_eq_text, leftarg=mytext, rightarg=text);
+CREATE TABLE mytable (val mytext);
+
+SELECT * FROM mytable WHERE val = 'foo';
+
+This query will not use the custom operator. The parser will first see if
+there is a mytext> => mytext> operator
+(), which there is not;
+then it will consider the domain's base type text>, and see if
+there is a text> => text> operator
+(), which there is;
+so it resolves the unknown>-type literal as text> and
+uses the text> => text> operator.
+The only way to get the custom operator to be used is to explicitly cast
+the literal:
+
+SELECT * FROM mytable WHERE val = text 'foo';
+
+so that the mytext> => text> operator is found
+immediately according to the exact-match rule. If the best-match rules
+are reached, they actively discriminate against operators on domain types.
+If they did not, such an operator would create too many ambiguous-operator
+failures, because the casting rules always consider a domain as castable
+to or from its base type, and so the domain operator would be considered
+usable in all the same cases as a similarly-named operator on the base type.
+
+
+
+If any input argument is of a domain type, treat it as being of the
+domain's base type for all subsequent steps. This ensures that domains
+act like their base types for purposes of ambiguous-function resolution.
+
+
+
Run through all candidates and keep those with the most exact matches
-on input types. (Domains are considered the same as their base type
-for this purpose.) Keep all candidates if none have exact matches.
+on input types. Keep all candidates if none have exact matches.
If only one candidate remains, use it; else continue to the next step.
If all inputs are of the same type, and it is not unknown,
-resolve as that type. Otherwise, replace any domain types in the list with
-their underlying base types.
+resolve as that type.
+
+
+
+
+If any input is of a domain type, treat it as being of the
+domain's base type for all subsequent steps.
+
+ Somewhat like the treatment of domain inputs for operators and
+ functions, this behavior allows a domain type to be preserved through
+ a UNION> or similar construct, so long as the user is
+ careful to ensure that all inputs are implicitly or explicitly of that
+ exact type. Otherwise the domain's base type will be preferred.
+
+