diff options
| author | Peter Eisentraut | 2022-04-09 14:15:01 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2022-04-09 14:15:01 +0000 |
| commit | 38abc39c81f9d51cff0b4dccebd5bf73327f19e1 (patch) | |
| tree | beb67e0aa853299233df4302ece281a6986d5144 /src/backend/commands | |
| parent | fc5b83bb60a862a4a27372b255405df598455ff1 (diff) | |
Add missing serial commas
Diffstat (limited to 'src/backend/commands')
| -rw-r--r-- | src/backend/commands/publicationcmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/publicationcmds.c b/src/backend/commands/publicationcmds.c index 4fd1e6e7abb..7aacb6b2fec 100644 --- a/src/backend/commands/publicationcmds.c +++ b/src/backend/commands/publicationcmds.c @@ -613,7 +613,7 @@ check_simple_rowfilter_expr_walker(Node *node, ParseState *pstate) /* OK, supported */ break; default: - errdetail_msg = _("Expressions only allow columns, constants, built-in operators, built-in data types, built-in collations and immutable built-in functions."); + errdetail_msg = _("Expressions only allow columns, constants, built-in operators, built-in data types, built-in collations, and immutable built-in functions."); break; } |
