diff options
Diffstat (limited to 'src/backend/catalog/pg_operator.c')
-rw-r--r-- | src/backend/catalog/pg_operator.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/catalog/pg_operator.c b/src/backend/catalog/pg_operator.c index f8d6bb0e34b..802b9840e86 100644 --- a/src/backend/catalog/pg_operator.c +++ b/src/backend/catalog/pg_operator.c @@ -92,10 +92,10 @@ validOperatorName(const char *name) return false; /* - * For SQL92 compatibility, '+' and '-' cannot be the last char of a + * For SQL standard compatibility, '+' and '-' cannot be the last char of a * multi-char operator unless the operator contains chars that are not in - * SQL92 operators. The idea is to lex '=-' as two operators, but not to - * forbid operator names like '?-' that could not be sequences of SQL92 + * SQL operators. The idea is to lex '=-' as two operators, but not to + * forbid operator names like '?-' that could not be sequences of standard SQL * operators. */ if (len > 1 && |