From: | Peter Eisentraut <peter_e(at)gmx(dot)net> |
---|---|
To: | pgsql-committers(at)postgresql(dot)org |
Subject: | pgsql: Move pgbench from contrib/ to src/bin/ |
Date: | 2015-04-13 17:08:13 |
Message-ID: | E1YhhqH-0006bl-8c@gemulon.postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
Move pgbench from contrib/ to src/bin/
Reviewed-by: Michael Paquier <michael(dot)paquier(at)gmail(dot)com>
Branch
------
master
Details
-------
http://git.postgresql.org/pg/commitdiff/81134af3ec09d67043833f8d614fd688f17cb213
Modified Files
--------------
contrib/Makefile | 1 -
contrib/pgbench/.gitignore | 3 -
contrib/pgbench/Makefile | 33 -
contrib/pgbench/exprparse.y | 98 -
contrib/pgbench/exprscan.l | 129 --
contrib/pgbench/pgbench.c | 4004 ----------------------------------------
contrib/pgbench/pgbench.h | 60 -
doc/src/sgml/contrib.sgml | 1 -
doc/src/sgml/filelist.sgml | 1 -
doc/src/sgml/pgbench.sgml | 1176 ------------
doc/src/sgml/ref/allfiles.sgml | 1 +
doc/src/sgml/ref/pgbench.sgml | 1176 ++++++++++++
doc/src/sgml/reference.sgml | 1 +
src/bin/Makefile | 1 +
src/bin/pgbench/.gitignore | 3 +
src/bin/pgbench/Makefile | 42 +
src/bin/pgbench/exprparse.y | 98 +
src/bin/pgbench/exprscan.l | 129 ++
src/bin/pgbench/pgbench.c | 4004 ++++++++++++++++++++++++++++++++++++++++
src/bin/pgbench/pgbench.h | 60 +
src/tools/msvc/Mkvcbuild.pm | 23 +-
21 files changed, 5528 insertions(+), 5516 deletions(-)
From | Date | Subject | |
---|---|---|---|
Next Message | Alvaro Herrera | 2015-04-13 17:17:05 | Re: pgsql: Mark the second argument of pg_log as the translatable string in |
Previous Message | Heikki Linnakangas | 2015-04-13 15:31:12 | pgsql: Fix pg_rewind regression tests in VPATH builds |