Re: [HACKERS] Unable to check out REL7_1 via cvs

2000-12-22 Thread Alfred Perlstein
* Yusuf Goolamabbas [EMAIL PROTECTED] [001222 15:47] wrote: Nope, no luck with cvs -Rq also. Me thinks its some repository permission issue. Don't know if CVSup would help either. I don't have cvsup installed on this machine. CVSup would work, that's what I use. -- -Alfred Perlstein

[HACKERS] externalizing PGresult?

2000-12-21 Thread Alfred Perlstein
Is there anything for encoding a PGresult struct into something I can pass between processes? Like turning it into a platform independant stream that I can pass between machines? -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in a jar

Re: [HACKERS] Idea for reducing planning time

2000-12-15 Thread Alfred Perlstein
committed his fixups but we're still waiting on Vadim? -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]]

Re: [HACKERS] Why vacuum?

2000-12-14 Thread Alfred Perlstein
to specify how much deleted data you wish to reclaim) data can be marked free but not free for re-use until vacuum is run. -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in a jar on my desk."

Re: [HACKERS] Why vacuum?

2000-12-14 Thread Alfred Perlstein
thing you need during high loads is the database thinking that it is time to clean up. Even worse is having to scan a file that has grown 20x the size because you havne't vacuum'd in a while. -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I k

Re: [HACKERS] Why vacuum?

2000-12-13 Thread Alfred Perlstein
want to check out: http://people.freebsd.org/~alfred/vacfix/ It has some tarballs that have patches to speed up vacuum depending on how you access your tables you can see up to a 20x reduction in vacuum time. -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a

Re: [HACKERS] Idea for reducing planning time

2000-12-13 Thread Alfred Perlstein
increase and something too good to pass up. thanks, -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in a jar on my desk."

Re: [HACKERS] Why vacuum?

2000-12-13 Thread Alfred Perlstein
* xuyifeng [EMAIL PROTECTED] [001213 18:54] wrote: I have this nasty problem too, in early time, I don't know the problem, but we used it for a while, than we found our table growing too fast without insert any record( we use update), this behaviour most like M$ MSACCESS database I had

[HACKERS] (one more time) Patches with vacuum fixes available.

2000-12-11 Thread Alfred Perlstein
Alfred Perlstein [EMAIL PROTECTED] - From: Alfred Perlstein [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [HACKERS] Patches with vacuum fixes available for 7.0.x Date: Thu, 7 Dec 2000 14:57:32 -0800 Message-ID: [EMAIL PROTECTED] User-Agent: Mutt/1.2.5i Sender: [EMAIL PROTECTED] We recently

Re: [HACKERS] (one more time) Patches with vacuum fixes available.

2000-12-11 Thread Alfred Perlstein
* The Hermit Hacker [EMAIL PROTECTED] [001211 14:27] wrote: On Mon, 11 Dec 2000, Bruce Momjian wrote: Alfred Perlstein [EMAIL PROTECTED] writes: Basically Vadim left it up to me to campaign for acceptance of this work and he said he wouldn't have a problem bringing it in as long

Re: [HACKERS] (one more time) Patches with vacuum fixes available .

2000-12-11 Thread Alfred Perlstein
and index 641 megs. dual 800mhz, raid 5 disks. I think the users deserve this patch. :) -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in a jar on my desk."

[HACKERS] abstract: fix poor constant folding in 7.0.x, fixed in 7.1?

2000-12-07 Thread Alfred Perlstein
ave a hook where it can eval a const because depending on the const it may or may not be able to return a const, for instance if some string you passed to timestamp() caused it to return non-const data. Or maybe this is fixed in 7.1? -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I

Re: [HACKERS] abstract: fix poor constant folding in 7.0.x, fixed in 7.1?

2000-12-07 Thread Alfred Perlstein
* Tom Lane [EMAIL PROTECTED] [001207 16:45] wrote: Alfred Perlstein [EMAIL PROTECTED] writes: Each function should have a marker that explains whether when given a const input if the output might vary, that way subexpressions can be collapsed until an input becomes non-const. We already

Re: [HACKERS] Patches with vacuum fixes available for 7.0.x

2000-12-07 Thread Alfred Perlstein
* Tom Lane [EMAIL PROTECTED] [001207 17:10] wrote: Alfred Perlstein [EMAIL PROTECTED] writes: Basically Vadim has been able to reduce the amount of time taken by a vacuum from 10-15 minutes down to under 10 seconds. Cool. What's it do, exactly

Re: [HACKERS] Patches with vacuum fixes available for 7.0.x

2000-12-07 Thread Alfred Perlstein
* Tom Samplonius [EMAIL PROTECTED] [001207 18:55] wrote: On Thu, 7 Dec 2000, Alfred Perlstein wrote: We recently had a very satisfactory contract completed by Vadim. Basically Vadim has been able to reduce the amount of time taken by a vacuum from 10-15 minutes down to under 10

[HACKERS] Spinlocks may be broken.

2000-12-05 Thread Alfred Perlstein
to be protected by the lock not getting flushed out to main memory until possibly after the unlock happens. I'm pretty sure you guys need memory barrier ops. -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in a jar on my desk."

[HACKERS] Need help with phys backed shm segments (Postgresql+FreeBSD).

2000-12-05 Thread Alfred Perlstein
: (0x3004804c) - 1 S_UNLOCK: (0x3004804d) - 1 S_UNLOCK: (0x30048048) - 1 tas (0x30048048) - 0 tas (0x3004804d) - 4 tas (0x3004804d) - 1 tas (0x3004804d) - 1 tas (0x3004804d) - 1 tas (0x3004804d) - 1 tas (0x3004804d) - 1 tas (0x3004804d) - 1 tas (0x3004804d) - 1 repeats (it's stuck) -- -Alfred

Re: [HACKERS] Re: LOCK Fixes/Break on FreeBSD 4.2-STABLE

2000-12-05 Thread Alfred Perlstein
* Tom Lane [EMAIL PROTECTED] [001205 07:14] wrote: Alfred Perlstein [EMAIL PROTECTED] writes: Anyhow, to address the problem I've removed struct mount from userland visibility in both FreeBSD 5.x (current) and FreeBSD 4.x (stable). That might fix things on your box, but we can hardly

Re: [HACKERS] Spinlocks may be broken.

2000-12-05 Thread Alfred Perlstein
* Tom Lane [EMAIL PROTECTED] [001205 07:24] wrote: Alfred Perlstein [EMAIL PROTECTED] writes: I'm pretty sure you guys need memory barrier ops. On a machine that requires such a thing, the assembly code for UNLOCK should include it. Want to provide a patch? My assembler is extremely

Re: [HACKERS] Need help with phys backed shm segments (Postgresql+FreeBSD).

2000-12-05 Thread Alfred Perlstein
* Tom Lane [EMAIL PROTECTED] [001205 07:43] wrote: Alfred Perlstein [EMAIL PROTECTED] writes: Here's the log, the number in parens is the address of the lock, on tas() the value printed to the right is the value in _ret, for the others, it's the value before the lock count is set

Re: [HACKERS] beta testing version

2000-12-05 Thread Alfred Perlstein
then that chance was gone before it even happened. Hence no reason to develop it. *poof* no ER server. -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in a jar on my desk."

Re: [HACKERS] COPY BINARY is broken...

2000-12-01 Thread Alfred Perlstein
* Tom Lane [EMAIL PROTECTED] [001201 14:57] wrote: Alfred Perlstein [EMAIL PROTECTED] writes: I would rip it out. I thought about that too, but was afraid to suggest it ;-) I think you'd agree that you have more fun and important things to do than to deal with this yucky interface

Re: [HACKERS] Re: LOCK Fixes/Break on FreeBSD 4.2-STABLE

2000-11-28 Thread Alfred Perlstein
a computer... http://people.freebsd.org/~alfred/images/lab.jpg :) -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in a jar on my desk."

Re: [HACKERS] location of Unix socket

2000-11-17 Thread Alfred Perlstein
to ignore non regular files. -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in a jar on my desk."

Re: [HACKERS] RE: [COMMITTERS] pgsql/src/backend/access/transam ( xact.c xlog.c)

2000-11-16 Thread Alfred Perlstein
herded, and giving up the CPU may be the best way to do it. Yes, but if everyone yeilds you're back where you started, and with 128 or more backends do you really want to cause possibly that many context switches per fsync? -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I

Re: [HACKERS] RE: [COMMITTERS] pgsql/src/backend/access/transam ( xact.c xlog.c)

2000-11-16 Thread Alfred Perlstein
* Tom Lane [EMAIL PROTECTED] [001116 13:31] wrote: Alfred Perlstein [EMAIL PROTECTED] writes: It might make more sense to keep a private copy of the last time the file was modified per-backend by that particular backend and a timestamp of the last fsync shared globally so one can forgo

Re: [HACKERS] RE: [COMMITTERS] pgsql/src/backend/access/transam ( xact.c xlog.c)

2000-11-16 Thread Alfred Perlstein
vous point for the fsync call although cost more as one would need to periodically call gettimeofday to set the modified by me timestamp as well as the post-fsync shared timestamp. -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in a jar on my desk."

Re: [HACKERS] 486 Optimizations...

2000-11-15 Thread Alfred Perlstein
, and they are actively porting to more platforms. I do feel more strongly about removing '-pipe', but it's not something I'm going to pursue. Why? -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in a jar on my desk."

Re: [HACKERS] 486 Optimizations...

2000-11-14 Thread Alfred Perlstein
oop_unroll -Dsvr4' $ pwd /home/ler/pg-dev/pgsql/src/template $ I have a patch pending for FreeBSD to support alpha builds that also disables -m486 so if you left the freebsd template alone it would be ok. -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of

Re: [HACKERS] 486 Optimizations...

2000-11-14 Thread Alfred Perlstein
m486 -pipe' univel:CFLAGS='-v -O -K i486,host,inline,loop_unroll -Dsvr4' Why would you want to? Not all gccs support -mpentium/mpentiumpro etc. The idea is to remove it entirely (I hope) not add even more arch specific compile flags. -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED

Re: [HACKERS] 486 Optimizations...

2000-11-14 Thread Alfred Perlstein
* Larry Rosenman [EMAIL PROTECTED] [001114 13:47] wrote: * Alfred Perlstein [EMAIL PROTECTED] [001114 15:46]: * Larry Rosenman [EMAIL PROTECTED] [001114 13:42] wrote: Anyone care if I build a patch to kill the -m486 type options in the following files: $ grep -i -- 486 * bsdi

[HACKERS] IRC?

2000-11-14 Thread Alfred Perlstein
I remeber a few developers used to gather on efnet irc, there was a lot of instability recently that seems to have cleared up even more recently. Are you guys planning on coming back? Or have you all moved to a different network? -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED

Re: One more [HACKERS] 486 Optimizations...

2000-11-14 Thread Alfred Perlstein
broken code when pushed to thier highest optimization levels. -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in a jar on my desk."

Re: [HACKERS] 7.0.2 dies when connection dropped mid-transaction

2000-11-11 Thread Alfred Perlstein
, as always :) Just wanted to confirm that we haven't experianced the bug since we've applied Tom's patch several days ago. thanks for the excellent work! -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in a jar on my desk."

Re: [HACKERS] cygwin gcc problem.

2000-11-11 Thread Alfred Perlstein
* Gary MacDougall [EMAIL PROTECTED] [00 11:28] wrote: I'm trying to compile postgresql on Windows 2000. I've followed the directions accordingly. When I run the "configure" script, and I get the following error message: configure: error installation or configuration problem: C

Re: [HACKERS] RE: [COMMITTERS] pgsql/src/backend/access/transam ( xact.c xlog.c)

2000-11-11 Thread Alfred Perlstein
patches for the backend. :( -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]]

Re: [HACKERS] RE: [COMMITTERS] pgsql/src/backend/access/transam ( xact.c xlog.c)

2000-11-10 Thread Alfred Perlstein
? -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in a jar on my desk."

Re: [HACKERS] 7.0.2 dies when connection dropped mid-transaction

2000-11-09 Thread Alfred Perlstein
query is a bad thing and it'd be more prudent to wait. I have no problem syncing with your guys CVS, but people using redhat RPMS and FreeBSD Packages are going to wind up with this bug if you cut the release before squashing it. :( -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]]

Re: [HACKERS] 7.0.2 dies when connection dropped mid-transaction

2000-11-09 Thread Alfred Perlstein
, as always :) Tom rules. *thinking freebsd port should add user tgl rather than pgsql* :) -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in a jar on my desk."

Re: [HACKERS] VACUUM causes violent postmaster death

2000-11-03 Thread Alfred Perlstein
. -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in a jar on my desk."

Re: [HACKERS] VACUUM causes violent postmaster death

2000-11-03 Thread Alfred Perlstein
; author: tgl; state: Exp; lines: +37 -19 Back-patch fix to ensure that VACUUM always calls FlushRelationBuffers. -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in a jar on my desk."

Re: [HACKERS] Alpha FreeBSD port of PostgreSQL !!!

2000-11-03 Thread Alfred Perlstein
access to a FreeBSD box through the FreeBSD project and would like to have another shot at it, but I was hoping one of the guys more initmate with autoconf could lend me a hand. thanks, -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in

[HACKERS] Query cache import?

2000-10-31 Thread Alfred Perlstein
I never saw much traffic regarding Karel's work on making stored proceedures: http://people.freebsd.org/~alfred/karel-pgsql.txt What happened with this? It looked pretty interesting. :( -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I

[HACKERS] Re: [GENERAL] Query caching

2000-10-31 Thread Alfred Perlstein
://people.freebsd.org/~alfred/karel-pgsql.txt -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in a jar on my desk."

Re: [HACKERS] Restricting permissions on Unix socket

2000-10-31 Thread Alfred Perlstein
might be too awkward? Any hints? Set your umask to 777 then go to town. -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in a jar on my desk."

Re: [HACKERS] INHERITS doesn't offer enough functionality

2000-10-18 Thread Alfred Perlstein
* Oliver Elphick [EMAIL PROTECTED] [001018 04:59] wrote: Bruce Momjian wrote: Alfred Perlstein wrote: I noticed that INHERITS doesn't propogate indecies, It'd be nice if there was an toption to do so. Yep it would. Are you volunteering? Added to TODO

Re: [HACKERS] The lightbulb just went on...

2000-10-17 Thread Alfred Perlstein
this wasn't a completely isolated incident. -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in a jar on my desk."

Re: [HACKERS] Otvet: WAL and indexes (Re: [HACKERS] WAL status todo)

2000-10-16 Thread Alfred Perlstein
* Mikheev, Vadim [EMAIL PROTECTED] [001016 09:33] wrote: I don't understand why WAL needs to log internal operations of any of the index types. Seems to me that you could treat indexes as black boxes that are updated as side effects of WAL log items for heap tuples: when adding a heap tuple

Re: [HACKERS] Re: Otvet: WAL and indexes (Re: [HACKERS] WAL status todo)

2000-10-16 Thread Alfred Perlstein
ve the system tables broken, however the chances of that may be siginifigantly reduced depending on how often writes must be done to them. It's a hack, but depending on the amount of writes done to critical tables it may reduce the window for these inconvient situations signifigantly. -- -Alfred

Re: [HACKERS] Core dump

2000-10-12 Thread Alfred Perlstein
these signals or shutting down cleanly on reciept of them? -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in a jar on my desk."

Re: pg_dump possible fix, need testers. (was: Re: [HACKERS] pg_dump disaster)

2000-10-12 Thread Alfred Perlstein
* Tom Lane [EMAIL PROTECTED] [001012 12:14] wrote: Alfred Perlstein [EMAIL PROTECTED] writes: I'm pretty sure I know what to do now, it's pretty simple actually, I can examine the state of the connection, if it's in PGASYNC_COPY_IN then I don't grow the buffer, I inform the application

[HACKERS] calling PQendcopy() without blocking.

2000-10-10 Thread Alfred Perlstein
At times I need to call PQendcopy, how to I determine that it won't block me waiting for output from the backend? -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in a jar on my desk."

[HACKERS] more crashes with 7.0.2 from oct 4th-PATCHES

2000-10-09 Thread Alfred Perlstein
ttr()', is there anything I can do to provide more comprehensive error reporting or something? -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in a jar on my desk."

(forw) [HACKERS] more crashes

2000-10-04 Thread Alfred Perlstein
, -Alfred - Forwarded message from Alfred Perlstein [EMAIL PROTECTED] - From: Alfred Perlstein [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: Tom Lane [EMAIL PROTECTED] Subject: [HACKERS] more crashes Date: Mon, 2 Oct 2000 15:17:12 -0700 Message-ID: [EMAIL PROTECTED] User-Agent: Mutt/1.2.4i X

Re: [HACKERS] Note about include files

2000-10-02 Thread Alfred Perlstein
afe without doing surgery on those files.) gcc supports the '-include' directive which may be what you want. -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in a jar on my desk."

[HACKERS] more crashes

2000-10-02 Thread Alfred Perlstein
7316 (gdb) print *value Cannot access memory at address 0x3ff39254. (gdb) print oids $7 = 0 '\000' (gdb) print binary $8 = 0 '\000' (gdb) print string $9 = 0xfffc Address 0xfffc out of bounds Now I think I have the intial spot where it all goes to pot (the initial traceback). I rea

Re: [HACKERS] IF YOU'RE WORKING ON REPLICATION PLEASE CONTACT ME

2000-09-29 Thread Alfred Perlstein
. Check this out, I'm sure your contribution can help realize the replication server. http://www.pgsql.com/press/PR_5.html -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in a jar on my desk."

Re: pg_dump possible fix, need testers. (was: Re: [HACKERS] pg_dump disaster)

2000-09-29 Thread Alfred Perlstein
* Bruce Momjian [EMAIL PROTECTED] [000929 19:30] wrote: Can someone remind me of where we left this? I really haven't figured a correct way to deal with the output buffer. I'll try to consider ways to deal with this. -Alfred

Re: [HACKERS] pgsql is 75 times faster with my new index scan

2000-09-26 Thread Alfred Perlstein
* [EMAIL PROTECTED] [EMAIL PROTECTED] [000926 02:33] wrote: Hello, I recently spoke about extending index scan to be able to take data directly from index pages. [snip] Is someone interested in this ?? Considering the speedup, I sure as hell am interested. :) When are we going to have

<    1   2