*** README.pgbench 2006-08-22 22:06:04.810043250 -0700 --- README.pgbench.new 2006-08-22 22:02:32.844796250 -0700 *************** *** 43,52 **** pgbench -i ! where is the name of database. pgbench uses four tables ! accounts, branches, history and tellers. These tables will be ! destroyed. Be very careful if you have tables having same ! names. Default test data contains: table # of tuples ------------------------- --- 43,53 ---- pgbench -i ! where is the name of database. pgbench will create a new ! schema named pgbench within your database to create its tables. If ! pgbench detects that the schema alreday exists it will exit. ! pgbench uses four tables accounts, branches, history and tellers. ! Default test data contains: table # of tuples ------------------------- *************** *** 235,240 **** --- 236,253 ---- o History + 2006/08/22 + * New schema contributed by Joshua Drake + + * The schema now uses foreign keys to more accurately reflect a finacial DDL + * The history table now has a primary key that uses a serial + * The respective balance columns have been increased to int8 to deal with + larger values + * Initalization will be done in a new schema/namespace, pgbench will exit + if this schema/namespace exists + * The new DDL should allow both Mammoth Replicator and Slony to be tested using + pgbench (at least basic replication) + 2006/07/26 * New features contributed by Tomoaki Sato.