diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2015-03-31 15:12:27 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2015-03-31 15:12:27 +0300 |
commit | 1d0db8de043c28c1e665451663ec101da5adc5ab (patch) | |
tree | 5eae21018c2202cede3fbd3888b0934276edb74b /contrib/postgres_fdw/deparse.c | |
parent | fa1e5afa8a26d467aec7c8b36a0b749b690f636c (diff) | |
download | postgresql-1d0db8de043c28c1e665451663ec101da5adc5ab.tar.gz postgresql-1d0db8de043c28c1e665451663ec101da5adc5ab.zip |
Remove spurious semicolons.
Petr Jelinek
Diffstat (limited to 'contrib/postgres_fdw/deparse.c')
-rw-r--r-- | contrib/postgres_fdw/deparse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/postgres_fdw/deparse.c b/contrib/postgres_fdw/deparse.c index 59cb053e4f4..94fab18c425 100644 --- a/contrib/postgres_fdw/deparse.c +++ b/contrib/postgres_fdw/deparse.c @@ -317,7 +317,7 @@ foreign_expr_walker(Node *node, break; case T_ArrayRef: { - ArrayRef *ar = (ArrayRef *) node;; + ArrayRef *ar = (ArrayRef *) node; /* Assignment should not be in restrictions. */ if (ar->refassgnexpr != NULL) |