aboutsummaryrefslogtreecommitdiff
path: root/src/backend/tsearch/regis.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/tsearch/regis.c')
-rw-r--r--src/backend/tsearch/regis.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/tsearch/regis.c b/src/backend/tsearch/regis.c
index aea76e85b52..2b89f596f08 100644
--- a/src/backend/tsearch/regis.c
+++ b/src/backend/tsearch/regis.c
@@ -115,7 +115,7 @@ RS_compile(Regis *r, bool issuffix, const char *str)
ptr->type = RSF_ONEOF;
state = RS_IN_ONEOF;
}
- else /* shouldn't get here */
+ else /* shouldn't get here */
elog(ERROR, "invalid regis pattern: \"%s\"", str);
}
else if (state == RS_IN_ONEOF)
@@ -131,7 +131,7 @@ RS_compile(Regis *r, bool issuffix, const char *str)
ptr->len = pg_mblen(c);
state = RS_IN_ONEOF_IN;
}
- else /* shouldn't get here */
+ else /* shouldn't get here */
elog(ERROR, "invalid regis pattern: \"%s\"", str);
}
else if (state == RS_IN_ONEOF_IN || state == RS_IN_NONEOF)
@@ -143,7 +143,7 @@ RS_compile(Regis *r, bool issuffix, const char *str)
}
else if (t_iseq(c, ']'))
state = RS_IN_WAIT;
- else /* shouldn't get here */
+ else /* shouldn't get here */
elog(ERROR, "invalid regis pattern: \"%s\"", str);
}
else