aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/like_match.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2013-04-20 11:04:41 -0400
committerPeter Eisentraut <peter_e@gmx.net>2013-04-20 11:04:41 -0400
commitcc26ea9fe2e41e73c955ea75bea7a77fbd062d64 (patch)
tree4c436483ffbf452d00669c9a8a1e4072c41f4b12 /src/backend/utils/adt/like_match.c
parent6e481ebff6368cb0ab5351a5ef3463747c35af22 (diff)
downloadpostgresql-cc26ea9fe2e41e73c955ea75bea7a77fbd062d64.tar.gz
postgresql-cc26ea9fe2e41e73c955ea75bea7a77fbd062d64.zip
Clean up references to SQL92
In most cases, these were just references to the SQL standard in general. In a few cases, a contrast was made between SQL92 and later standards -- those have been kept unchanged.
Diffstat (limited to 'src/backend/utils/adt/like_match.c')
-rw-r--r--src/backend/utils/adt/like_match.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/adt/like_match.c b/src/backend/utils/adt/like_match.c
index a31bf8faa38..0c20cd173e5 100644
--- a/src/backend/utils/adt/like_match.c
+++ b/src/backend/utils/adt/like_match.c
@@ -42,7 +42,7 @@
*
* Keith Parks. <keith@mtcc.demon.co.uk>
*
- * SQL92 lets you specify the escape character by saying
+ * SQL lets you specify the escape character by saying
* LIKE <pattern> ESCAPE <escape character>. We are a small operation
* so we force you to use '\'. - ay 7/95
*