Re: [HACKERS] insert performance for win32

2005-11-04 Thread Andrew Dunstan
Tom Lane wrote: "Merlin Moncure" <[EMAIL PROTECTED]> writes: That works, I tried ctrl-c various ways including from within \i copy. Problem solved! Good. I've applied the patch in both HEAD and 8.0 branches. Since we're very nearly ready to wrap 8.1, would someone with access to a

Re: [HACKERS] insert performance for win32

2005-11-04 Thread Tom Lane
"Merlin Moncure" <[EMAIL PROTECTED]> writes: > That works, I tried ctrl-c various ways including from within \i copy. > Problem solved! Good. I've applied the patch in both HEAD and 8.0 branches. Since we're very nearly ready to wrap 8.1, would someone with access to a Windows machine please dou

Re: [HACKERS] insert performance for win32

2005-11-04 Thread Merlin Moncure
> void > setup_cancel_handler(void) > { > + static bool done = false; > + > + if (!done) > SetConsoleCtrlHandler(consoleHandler, TRUE); > + done = true; > } > That works, I tried ctrl-c various ways including from within \i copy. Problem solved! Merlin --