diff options
author | Robert Haas | 2018-07-23 15:48:38 +0000 |
---|---|---|
committer | Robert Haas | 2018-07-23 15:48:38 +0000 |
commit | 3214463228f45df033c14ed3925a318a99d72ce2 (patch) | |
tree | 97e18b757b302e3156aff9d2b09c0e1cc21ea47c | |
parent | e9a9843e1380c42a22fe5a89229afa98f1668ef3 (diff) |
pgbench: Remove duplicate entries from table of builtin functions.
Fabien Coelho
Discussion: http://postgr.es/m/alpine.DEB.2.21.1807221822320.19939@lancre
-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 8447e14d14..66288632d1 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 |