diff options
author | Robert Haas <rhaas@postgresql.org> | 2018-07-23 11:48:38 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2018-07-23 12:01:12 -0400 |
commit | 14ca287bcf329b26a6a8041ba69cc12332aba22c (patch) | |
tree | 7c420a7ff09ee914ea4344d99162fc44ccb9ff24 /src | |
parent | 1b957e59b92dc44c14708762f882d7910463a9ac (diff) | |
download | postgresql-14ca287bcf329b26a6a8041ba69cc12332aba22c.tar.gz postgresql-14ca287bcf329b26a6a8041ba69cc12332aba22c.zip |
pgbench: Remove duplicate entries from table of builtin functions.
Fabien Coelho
Discussion: http://postgr.es/m/alpine.DEB.2.21.1807221822320.19939@lancre
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pgbench/exprparse.y | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/bin/pgbench/exprparse.y b/src/bin/pgbench/exprparse.y index 8447e14d141..66288632d11 100644 --- a/src/bin/pgbench/exprparse.y +++ b/src/bin/pgbench/exprparse.y @@ -366,15 +366,6 @@ static const struct { "hash_fnv1a", PGBENCH_NARGS_HASH, PGBENCH_HASH_FNV1A }, - { - "hash", PGBENCH_NARGS_HASH, PGBENCH_HASH_MURMUR2 - }, - { - "hash_murmur2", PGBENCH_NARGS_HASH, PGBENCH_HASH_MURMUR2 - }, - { - "hash_fnv1a", PGBENCH_NARGS_HASH, PGBENCH_HASH_FNV1A - }, /* keep as last array element */ { NULL, 0, 0 |