- 12 Feb, 1997 1 commit
-
-
Marc G. Fournier authored
Patches from: aoki@CS.Berkeley.EDU (Paul M. Aoki) i gave jolly my btree bulkload code a long, long time ago but never gave him a bunch of my bugfixes. here's a diff against the 6.0 baseline. for some reason, this code has slowed down somewhat relative to the insertion-build code on very small tables. don't know why -- it used to be within about 10%. anyway, here are some (highly unscientific!) timings on a dec 3000/300 for synthetic tables with 10k, 100k and 1000k tuples (basically, 1mb, 10mb and 100mb heaps). 'c' means clustered (pre-sorted) inputs and 'u' means unclustered (randomly ordered) inputs. the 10k table basically fits in the buffer pool, but the 100k and 1000k tables don't. as you can see, insertion build is fine if you've sorted your heaps on your index key or if your heap fits in core, but is absolutely horrible on unordered data (yes, that's 7.5 hours to index 100mb of data...) because of the zillions of random i/os. if it doesn't work for you for whatever reason, you can always turn it back off by flipping the FastBuild flag in nbtree.c. i don't have time to maintain it. good luck! baseline code: time psql -c 'create index c10 on k10 using btree (c int4_ops)' bttest real 8.6 time psql -c 'create index u10 on k10 using btree (b int4_ops)' bttest real 9.1 time psql -c 'create index c100 on k100 using btree (c int4_ops)' bttest real 59.2 time psql -c 'create index u100 on k100 using btree (b int4_ops)' bttest real 652.4 time psql -c 'create index c1000 on k1000 using btree (c int4_ops)' bttest real 636.1 time psql -c 'create index u1000 on k1000 using btree (b int4_ops)' bttest real 26772.9 bulkloading code: time psql -c 'create index c10 on k10 using btree (c int4_ops)' bttest real 11.3 time psql -c 'create index u10 on k10 using btree (b int4_ops)' bttest real 10.4 time psql -c 'create index c100 on k100 using btree (c int4_ops)' bttest real 59.5 time psql -c 'create index u100 on k100 using btree (b int4_ops)' bttest real 63.5 time psql -c 'create index c1000 on k1000 using btree (c int4_ops)' bttest real 636.9 time psql -c 'create index u1000 on k1000 using btree (b int4_ops)' bttest real 701.0
-
- 11 Feb, 1997 3 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 09 Feb, 1997 6 commits
-
-
Marc G. Fournier authored
already doing Removed only reference to a machine.h I could find in c.h, to win32/machine.h
-
Marc G. Fournier authored
Essentially, config.h now includes an 'os.h', which is created via configure by linking a "port.h" file from the port directory to the include directory. Going to try to merge backend/port in similar ways
-
Marc G. Fournier authored
aren't doing anything anyway
-
Marc G. Fournier authored
sigprocmask, setsid and waitpid Especially for nextstep systems Awaiting for a context diff from Gregor to complete changes for the nextstep port
-
Marc G. Fournier authored
Add a check to configure for strdup Remove all the '-ltermcap' checks from psql/Makefile Have {psql,pg_dump}/Makefile modified if strdup doesn't exist on the system
-
Marc G. Fournier authored
|by neglecting to quote them. | |I have made a minor change to pg_dump.c that will fix this. | |Dates are dumped and restored OK with pg_dump in V6 | |We'll still need to fix the dump in both cases if the original dump is from V1.09. From Keith Parks
-
- 08 Feb, 1997 2 commits
-
-
Bruce Momjian authored
-
Marc G. Fournier authored
Pointed out by: Erik Bertelsen
-
- 07 Feb, 1997 4 commits
-
-
Marc G. Fournier authored
Pointed out by D'Arcy
-
Bruce Momjian authored
-
Marc G. Fournier authored
-
Marc G. Fournier authored
-
- 06 Feb, 1997 8 commits
-
-
Marc G. Fournier authored
Pointed out by Bruce
-
Bruce Momjian authored
-
Marc G. Fournier authored
Submitted by: Tatsuo Ishii
-
Marc G. Fournier authored
-
Marc G. Fournier authored
-
Marc G. Fournier authored
Remove references to NEED_UNION_SEMUN from include/config.h.in and from include/storage/ipc.h, replacing it with a single HAVE_UNION_SEMUN
-
Marc G. Fournier authored
-
Bruce Momjian authored
-
- 05 Feb, 1997 4 commits
-
-
Marc G. Fournier authored
-
Marc G. Fournier authored
-
Marc G. Fournier authored
Add CFLAGS= @CPPFLAGS@ to Makefile.global and configure so that build is useful for finding extra header files Split header files from libraries in build. Doesn't make much sense to look for a header file in /usr/local/lib, nor to look for a library in /usr/local/include :)
-
Bruce Momjian authored
-
- 04 Feb, 1997 11 commits
-
-
Marc G. Fournier authored
to include inet_aton.c if required
-
Marc G. Fournier authored
required Pointed out by Brian E. Gallew
-
Marc G. Fournier authored
Pointed out by: Darren King
-
Marc G. Fournier authored
-
Marc G. Fournier authored
directories to search to find libraries, and then runs ./configure directly
-
Marc G. Fournier authored
-
Marc G. Fournier authored
Submitted by: Keith Parks
-
Marc G. Fournier authored
Change reference to Postgres95 to PostgreSQL in GNUmakefile
-
Marc G. Fournier authored
clean up some of the readline code in config.h.in
-
Marc G. Fournier authored
-
Marc G. Fournier authored
-
- 03 Feb, 1997 1 commit
-
-
Marc G. Fournier authored
Pointed out by:" Tatsuo Ishii <t-ishii@sra.co.jp>
-