[HACKERS] timestamp and time now support precision

2001-10-02 Thread Thomas Lockhart
I've implemented timestamp and time precision per SQL99 spec. The syntax is TIMESTAMP(2) WITH TIME ZONE or TIME(0) etc etc. One result of this is that "timestamp" is no longer a valid external function name (among other things) due to parser ambiguity between TIMESTAMP(2) and, say, TI

Re: [HACKERS] Unicode combining characters

2001-10-02 Thread Tom Lane
Tatsuo Ishii <[EMAIL PROTECTED]> writes: >> I'd feel more confident if the measurements were done using operators >> repeated enough times to yield multiple-second runtimes. > Any idea to do that? Maybe something like this: declare a plpgsql function that takes two text parameters and has a body

Re: [HACKERS] My last ECPG commit

2001-10-02 Thread Thomas Lockhart
... > Yes, that's apossibility. But then the actual Debian package has not been > updated. And why messing with two mechanisms? It may be that the static tarballs for RedHat will work for you (they work for me on Mandrake). I use CVSup to keep a local copy of the cvs repository on my laptop, so

[HACKERS] HISTORY

2001-10-02 Thread Tatsuo Ishii
Could you not include characters other than ASCII in the HISTORY file, please. > Python fix fetchone() (Gerhard H$BgS(Bing) -- Tatsuo Ishii ---(end of broadcast)--- TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]

Re: [HACKERS] CVS changes

2001-10-02 Thread Thomas Lockhart
> will set that one up next ... Great! Thanks... - Thomas > > That sounds like a good setting for anoncvs service. But I think Thomas > > (and any other committers who use cvsup) still need a cvsup server > > running on the master cvs machine. Even a 1-hour lag is too m

Re: [HACKERS] [JDBC] LOCK TABLE oddness in PLpgSQL function called via JDBC

2001-10-02 Thread Hiroshi Inoue
Dave Harkness wrote: > > At 01:45 PM 10/2/2001, Barry Lind wrote: > >Dave, > > > >Secondly, you don't need a table lock, you just need to lock the row > >between the select and the update. You should use 'select for update' to > >do this. That way when you issue the select to get the current val

Re: [HACKERS] Unicode combining characters

2001-10-02 Thread Tatsuo Ishii
> > LIKE with MB seemed to be resonably fast, but REGEX with MB seemed a > > little bit slow. Probably this is due the wide character conversion > > overhead. > > Could this conversion be optimized to recognize when it's dealing with a > single-byte character encoding? Not sure, will look into..

Re: [HACKERS] Unicode combining characters

2001-10-02 Thread Tatsuo Ishii
> Yeah, I suspect there's 10% or more noise in these numbers. But then > one could read the results as saying we can't reliably measure any > difference at all ... > > I'd feel more confident if the measurements were done using operators > repeated enough times to yield multiple-second runtimes.

Re: [HACKERS] [GENERAL] Problem with the accents

2001-10-02 Thread Tatsuo Ishii
> Tatsuo Ishii wrote: > > > > You are definitely inputting ISO 8859-1 characters, not UTF-8. That's > > the source of your problem. > > > > Hello, In fact, we create and lodge Web sites and we use > PostgreSQL/Apache/PHP. > > I parameterized the encoding in "UNICODE" thinking that it was most

Re: [HACKERS] Missing inserts

2001-10-02 Thread Bruce Momjian
In 7.1.X and earlier the INSERT rules are executed _before_ the INSERT. This is changed to _after_ in 7.2. > For some reason, I seam to feel as if the inserts that should be executed by > a rule are not all getting executed, or at least, they are not getting writen. > > How can I find out wha

[HACKERS] Missing inserts

2001-10-02 Thread Martín Marqués
For some reason, I seam to feel as if the inserts that should be executed by a rule are not all getting executed, or at least, they are not getting writen. How can I find out what the rule is really doing? The logs don't say much. Any help will be grear at this moment of stress!!! X-> Saludos.

Re: [HACKERS] Bulkloading using COPY - ignore duplicates?

2001-10-02 Thread Jim Buttafuoco
I have used Oracle SQLOADER for many years now. It has the ability to put rejects/discards/bad into an output file and keep on going, maybe this should be added to the copy command. COPY [ BINARY ] table [ WITH OIDS ] FROM { 'filename' | stdin } [ [USING] DELIMITERS 'delimiter' ]

[HACKERS] btree_gist regression test busted?

2001-10-02 Thread Tom Lane
In current CVS I see a failure in the btree_gist regression test. It kinda looks like the test data was changed without updating the expected results, but would you verify this? regards, tom lane *** ./expected/btree_gist.out Wed Aug 22 14:27:54 2001 --- ./results/btre

Re: [HACKERS] RFD: access to remore databases: altername suggestion

2001-10-02 Thread Alex Pilosov
You are attacking here two things: a) schemas, which should be done in 7.3, thus multiple databases on same host would be unnecessary. b) connections to remote host' databases, which is partially implemented already (in a ugly way, but...) see contrib/dblink What you described is a syntactic s

[HACKERS] RFD: access to remore databases: altername suggestion

2001-10-02 Thread manieq
Hi! 0. I think access to other databases is really important. There was a discussion about that. Using a dot operator to specify a database (schema) seems to be very standard and elegant. But there is another way to implement it. Here is my suggestion. 1. First, some syntax: CREATE [ SHARED ] [

Re: [HACKERS] Unicode combining characters

2001-10-02 Thread Peter Eisentraut
Tatsuo Ishii writes: > LIKE with MB seemed to be resonably fast, but REGEX with MB seemed a > little bit slow. Probably this is due the wide character conversion > overhead. Could this conversion be optimized to recognize when it's dealing with a single-byte character encoding? -- Peter Eisent

Re: [HACKERS] Bulkloading using COPY - ignore duplicates?

2001-10-02 Thread Peter Eisentraut
Tom Lane writes: > It occurs to me that skip-the-insert might be a useful option for > INSERTs that detect a unique-key conflict, not only for COPY. (Cf. > the regular discussions we see on whether to do INSERT first or > UPDATE first when the key might already exist.) Maybe a SET variable > th

Re: [HACKERS] CVS changes

2001-10-02 Thread Peter Eisentraut
Bruce Momjian writes: > I know you can manually run it on individual SGML files but I don't see > a way to automate that. Do you? I don't because there isn't. For one, if a link points to some other file you lose. -- Peter Eisentraut [EMAIL PROTECTED] http://funkturm.homeip.net/~peter

Re: [HACKERS] When scripting, which is better?

2001-10-02 Thread Peter Eisentraut
Justin Clift writes: > i.e. if [ -x "$self_path/postmaster" ] && [ -x "$self_path/psql" ]; > then > > or > > if [[ -x "$self_path/postmaster" && -x "$self_path/psql" ]]; then I don't think the second one is a valid expression. ;-) Maybe you were wondering about [[ ]] vs [] -- In Autoconf [] ar

Re: [HACKERS] Unicode combining characters

2001-10-02 Thread Tom Lane
Bruce Momjian <[EMAIL PROTECTED]> writes: > But the strange thing is that LIKE is faster, perhaps meaning his > measurements can't even see the difference, Yeah, I suspect there's 10% or more noise in these numbers. But then one could read the results as saying we can't reliably measure any diff

Re: [HACKERS] do we're in time to catch 7.2 Beta ?

2001-10-02 Thread Marc G. Fournier
Yup, not a crucial component of the base system ... once we start to get into the 'release candidate' mode, then it is kinda frowned upon, but early beta, no probs ... On Tue, 2 Oct 2001, Bruce Momjian wrote: > > It is my understanding we can add things to /contrib even during beta, > right?

Re: [HACKERS] Unicode combining characters

2001-10-02 Thread Bruce Momjian
> Bruce Momjian <[EMAIL PROTECTED]> writes: > > If no one can find a case where multibyte is slower, I think we should > > enable it by default. Comments? > > Well, he just did point out such a case: > > >> no MB with MB > >> LIKE 0.09 msec 0.08 msec > >> REGEX

Re: [HACKERS] do we're in time to catch 7.2 Beta ?

2001-10-02 Thread Bruce Momjian
> Bruce Momjian <[EMAIL PROTECTED]> writes: > > It is my understanding we can add things to /contrib even during beta, > > right? We are certainly more lax with beta than with the main backend > > tree. /contrib does get compiled so it does need to compile cleanly. > > The rules for contrib are

Re: [HACKERS] Unicode combining characters

2001-10-02 Thread Tom Lane
Bruce Momjian <[EMAIL PROTECTED]> writes: > If no one can find a case where multibyte is slower, I think we should > enable it by default. Comments? Well, he just did point out such a case: >> no MB with MB >> LIKE 0.09 msec 0.08 msec >> REGEX0.09 ms

Re: [HACKERS] do we're in time to catch 7.2 Beta ?

2001-10-02 Thread Tom Lane
Bruce Momjian <[EMAIL PROTECTED]> writes: > It is my understanding we can add things to /contrib even during beta, > right? We are certainly more lax with beta than with the main backend > tree. /contrib does get compiled so it does need to compile cleanly. The rules for contrib are laxer, for

Re: [HACKERS] CVS changes

2001-10-02 Thread Bruce Momjian
> > U ... I thought we weren't going to do this, but were going to fix the > proper build process? Well, until it works I can fiddle with it here. What will the future build interval be? Are people OK with that? -- Bruce Momjian| http://candle.pha.pa.us [EMAI

Re: [HACKERS] CVS changes

2001-10-02 Thread Marc G. Fournier
U ... I thought we weren't going to do this, but were going to fix the proper build process? On Tue, 2 Oct 2001, Bruce Momjian wrote: > > On Sun, 30 Sep 2001, Bruce Momjian wrote: > > > > > > > > On Sun, 30 Sep 2001, Bruce Momjian wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > j

Re: [HACKERS] What about CREATE OR REPLACE FUNCTION?

2001-10-02 Thread Stephan Szabo
On Tue, 2 Oct 2001, Tom Lane wrote: > Did we come to any conclusion about whether to accept Gavin Sherry's > CREATE OR REPLACE FUNCTION patch? > http://fts.postgresql.org/db/mw/msg.html?mid=1035792 > > AFAIR, the score was that I liked it, Bruce didn't, and no one else > had expressed an opinion

Re: [HACKERS] cvs problem

2001-10-02 Thread Lamar Owen
On Monday 01 October 2001 07:33 pm, John Summerfield wrote: > It seems you don't have to be new here to be a bit peeved about things;-( [snip] > Time to get your act together fellas. This is open source John, not rocket science. (pun intended) Lighten up. The release will happen, regardless of

Re: [HACKERS] Unicode combining characters

2001-10-02 Thread Bruce Momjian
If no one can find a case where multibyte is slower, I think we should enable it by default. Comments? > > Also, have we decided if multibyte should be the configure default now? > > Not sure. > > Anyway I have tested LIKE/REGEX query test using current. The query > executed is: > > explain

Re: [HACKERS] do we're in time to catch 7.2 Beta ?

2001-10-02 Thread Bruce Momjian
It is my understanding we can add things to /contrib even during beta, right? We are certainly more lax with beta than with the main backend tree. /contrib does get compiled so it does need to compile cleanly. > We're about to release brand new contrib module which is > actually is a first ste

Re: [HACKERS] What about CREATE OR REPLACE FUNCTION?

2001-10-02 Thread Bruce Momjian
> Did we come to any conclusion about whether to accept Gavin Sherry's > CREATE OR REPLACE FUNCTION patch? > http://fts.postgresql.org/db/mw/msg.html?mid=1035792 > > AFAIR, the score was that I liked it, Bruce didn't, and no one else > had expressed an opinion. I withdraw my objection. When I r

Re: [HACKERS] CVS changes

2001-10-02 Thread Bruce Momjian
> On Sun, 30 Sep 2001, Bruce Momjian wrote: > > > > > On Sun, 30 Sep 2001, Bruce Momjian wrote: > > > > > > > > > > > > > > > > > > > > > just about to be moved to the new server, now that the new 18gi drive has > > > > > been installed ... plan on getting that done this afternoon ... > > > > >

Re: [HACKERS] CVS changes

2001-10-02 Thread Vince Vielhaber
On Tue, 2 Oct 2001, Bruce Momjian wrote: > > On Mon, 1 Oct 2001, Bruce Momjian wrote: > > > > > > Until the dust settles the only two people with write access to either > > > > the developer or regular website will be Marc and myself. I have enough > > > > to do trying to get mirroring straight,

Re: [HACKERS] cvs problem

2001-10-02 Thread Vince Vielhaber
On Tue, 2 Oct 2001, John Summerfield wrote: > On Mon, 1 Oct 2001, Tom Lane wrote: > > > > Bruce Momjian <[EMAIL PROTECTED]> writes: > > > The one thing I can't check is the anoncvs directory. Not sure if that > > > is the same as the CVS directory. > > > > It is the anoncvs server that's broken.

Re: [HACKERS] CVS changes

2001-10-02 Thread Bruce Momjian
> > OK, new directory is /home/momjian/docs and links need to be created in > > /usr/local/www/www/html/docs. > > > > internalpics.pdf is the same as the one you have on the developers site > > but it should be a link to the copy in my home directory so I can update > > it regularly. I know it is

Re: [HACKERS] CVS changes

2001-10-02 Thread Bruce Momjian
> On Mon, 1 Oct 2001, Bruce Momjian wrote: > > > > Until the dust settles the only two people with write access to either > > > the developer or regular website will be Marc and myself. I have enough > > > to do trying to get mirroring straight, keep up with changes to the sites, > > > etc. that

Re: [HACKERS] cvs problem

2001-10-02 Thread John Summerfield
On Mon, 1 Oct 2001, Bruce Momjian wrote: > > Marc, > > > > it worked, but now I'm again getting: > > > > cvs server: failed to create lock directory for >/projects/cvsroot/pgsql/contrib/pgcrypto/expected' >(/projects/cvsroot/pgsql/contrib/pgcrypto/expected/#cvs.lock): Permission denied > > cvs

[HACKERS] do we're in time to catch 7.2 Beta ?

2001-10-02 Thread Oleg Bartunov
We're about to release brand new contrib module which is actually is a first step of integration of OpenFTS to postgres. Preliminary numbers are rather impressive - zen:~/app/pgsql/GiST/tsearch_index$ time psql-dev apod -c \ "select title from titles where titleidx @@ 'gist&patch';" > /dev/null

Re: [HACKERS] My last ECPG commit

2001-10-02 Thread Michael Meskes
On Tue, Oct 02, 2001 at 10:33:55AM -0400, Tom Lane wrote: > Or update to the fixed version of cvsup, anyway. Thomas Lockhart likes > cvsup too, so you can be sure it will continue to be a workable means > of working with our CVS tree. Yes, that's apossibility. But then the actual Debian package

Re: [HACKERS] What about CREATE OR REPLACE FUNCTION?

2001-10-02 Thread Hannu Krosing
Tom Lane wrote: > > Did we come to any conclusion about whether to accept Gavin Sherry's > CREATE OR REPLACE FUNCTION patch? > http://fts.postgresql.org/db/mw/msg.html?mid=1035792 > > AFAIR, the score was that I liked it, Bruce didn't, and no one else > had expressed an opinion. > > The patch i

Re: [HACKERS] CVS changes

2001-10-02 Thread John Summerfield
On Sun, 30 Sep 2001, Bruce Momjian wrote: > > On Sun, 30 Sep 2001, Bruce Momjian wrote: > > > > > > > > > > > > > > > > just about to be moved to the new server, now that the new 18gi drive has > > > > been installed ... plan on getting that done this afternoon ... > > > > > > Don't rush. I am

Re: [HACKERS] cvs problem

2001-10-02 Thread John Summerfield
On Mon, 1 Oct 2001, Tom Lane wrote: > Bruce Momjian <[EMAIL PROTECTED]> writes: > > The one thing I can't check is the anoncvs directory. Not sure if that > > is the same as the CVS directory. > > It is the anoncvs server that's broken. The committers don't seem to be > having any problem with

[HACKERS] pgAdmin users upgrading to PostgreSQL 7.2

2001-10-02 Thread Dave Page
Hi, It's come to my attention that users of pgAdmin (the original, not pgAdmin II) will not be able to dump/reload their 7.1.x databases into 7.2 without an additional step in the upgrade procedure. This is because pgAdmin creates a number of views on the server which include the oid column from

[HACKERS] Elephant, Horse and Hare (Rabbit) : Oracle, PostgreSQL and MySQL !

2001-10-02 Thread peace_flower
Just a HUMOR, no offense and take it easy!! = If someone ask's you how do you compare the features and capability of these three popular SQL servers: Oracle, PostgreSQL and MySQL ?? Then comes the answer in layman's terms: "A Elephant, Powerful White Horse, Fast

Re: [HACKERS] Preparation for Beta

2001-10-02 Thread Lamar Owen
On Tuesday 02 October 2001 08:32 am, Marc G. Fournier wrote: > ftp.postgresql.org:/var/spool/ftp/pub/binary > (216.126.85.28) So far so good. Login successful, group membership correct. I'll let you know if I stumble across a roadblock. Oh, and BTW: having done server splits and moves in the

Re: [HACKERS] Problem on AIX with current

2001-10-02 Thread Tom Lane
Tatsuo Ishii <[EMAIL PROTECTED]> writes: > Strange enough, there's no other backend (of course except stats > collectors) here. I make sure this with ps and pg_stat_activity view. If you have no better way of determining what's going on, it might help to recompile with LOCK_DEBUG defined, then en

Re: [HACKERS] My last ECPG commit

2001-10-02 Thread Tom Lane
Michael Meskes <[EMAIL PROTECTED]> writes: > But now cvsup on my system stopped working because of that 10mil > seconds bug but I failed to notice. Hey, I don't check the logfiles > everytime. So when I made my last commit, I simply used these old files as a > base and removed Tom's patch. I guess

[HACKERS] What about CREATE OR REPLACE FUNCTION?

2001-10-02 Thread Tom Lane
Did we come to any conclusion about whether to accept Gavin Sherry's CREATE OR REPLACE FUNCTION patch? http://fts.postgresql.org/db/mw/msg.html?mid=1035792 AFAIR, the score was that I liked it, Bruce didn't, and no one else had expressed an opinion. The patch itself needs a little bit of cleanup

Re: [HACKERS] cvsweb

2001-10-02 Thread Vince Vielhaber
On Tue, 2 Oct 2001, Tom Lane wrote: > Frank Wiles <[EMAIL PROTECTED]> writes: > > It appears the cvs log functionality is working just fine, however > > you can't actually view the source of the file by clicking on the > > revision number. Clicking on: > > >http://developer.post

Re: [ODBC] [HACKERS] UTF-8 support

2001-10-02 Thread Dave Page
> -Original Message- > From: Tatsuo Ishii [mailto:[EMAIL PROTECTED]] > Sent: 24 September 2001 08:13 > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]; > [EMAIL PROTECTED] > Subject: Re: [ODBC] [HACKERS] UTF-8 support > > > > Which ones belong to the backend and whic

Re: [HACKERS] CVS changes

2001-10-02 Thread Marc G. Fournier
will set that one up next ... On Tue, 2 Oct 2001, Tom Lane wrote: > "Marc G. Fournier" <[EMAIL PROTECTED]> writes: > > On Mon, 1 Oct 2001, Thomas Lockhart wrote: > >> I would like to resolve the 12 hour lag for CVSup and anoncvs service, > > > It should never have been 12hrs ... I had it set fo

[HACKERS] My last ECPG commit

2001-10-02 Thread Michael Meskes
Christof just told me that I overwrote Tom's patch fixing the setlocale problem in ecpg. I did not notice that and for some strange reason did not get Tom's mail either. Anyway, the CVS problem was that I use cvsup to keep an up-to-date source tree. I have set up my system so that it updates every

Re: [HACKERS] cvsweb

2001-10-02 Thread Tom Lane
Frank Wiles <[EMAIL PROTECTED]> writes: > It appears the cvs log functionality is working just fine, however > you can't actually view the source of the file by clicking on the > revision number. Clicking on: > >http://developer.postgresql.org/cvsweb.cgi/src/bin/psql/command.c?r

Re: [HACKERS] cvsweb

2001-10-02 Thread Vince Vielhaber
On Tue, 2 Oct 2001, Frank Wiles wrote: > It appears the cvs log functionality is working just fine, however > you can't actually view the source of the file by clicking on the > revision number. Clicking on: oops! fixed. --

Re: [HACKERS] Genetic Query Optimizer

2001-10-02 Thread Tom Lane
"James L. Hubbard III" <[EMAIL PROTECTED]> writes: > Who works on the genetic query optimizer (geqo)? AFAIK, no one has touched the genetic algorithm itself in years --- not since the original contributor, who has not been heard from in awhile. The only changes to that code have been to clean up

Re: [HACKERS] cvsweb

2001-10-02 Thread Frank Wiles
.--[ Tom Lane wrote (2001/10/02 at 09:47:41) ]-- | | Vince Vielhaber <[EMAIL PROTECTED]> writes: | > cvsweb is now working! It's available from the developer's site: | > http://developer.postgresql.org/ | | Thankyouthankyouthankyouthankyou ... I hadn't realized

Re: [HACKERS] cvsweb

2001-10-02 Thread Tom Lane
Vince Vielhaber <[EMAIL PROTECTED]> writes: > cvsweb is now working! It's available from the developer's site: > http://developer.postgresql.org/ Thankyouthankyouthankyouthankyou ... I hadn't realized how much I'd come to depend on that service, until I didn't have it for awhile ...

[HACKERS] cvsweb

2001-10-02 Thread Vince Vielhaber
cvsweb is now working! It's available from the developer's site: http://developer.postgresql.org/ Vince. -- == Vince Vielhaber -- KA8CSHemail: [EMAIL PROTECTED]http://www.pop4.net 56K Nationw

Re: [HACKERS] CVS changes

2001-10-02 Thread Tom Lane
"Marc G. Fournier" <[EMAIL PROTECTED]> writes: > On Mon, 1 Oct 2001, Thomas Lockhart wrote: >> I would like to resolve the 12 hour lag for CVSup and anoncvs service, > It should never have been 12hrs ... I had it set for 4 ... but, I have > drop'd it down to hourly effective this morning ... Tha

Re: [HACKERS] But _where_ is the anoncvs server ?

2001-10-02 Thread Oleg Bartunov
Thanks, It works now On Tue, 2 Oct 2001, Marc G. Fournier wrote: > > should have auto-fixed itself about 10 minutes ago ... > > On Tue, 2 Oct 2001, Oleg Bartunov wrote: > > > Marc, > > > > fix, please, permanently problem with permissions in anonymous CVS > > cvs server: Updating pgsql/contrib/pg

Re: [HACKERS] But _where_ is the anoncvs server ?

2001-10-02 Thread Marc G. Fournier
should have auto-fixed itself about 10 minutes ago ... On Tue, 2 Oct 2001, Oleg Bartunov wrote: > Marc, > > fix, please, permanently problem with permissions in anonymous CVS > cvs server: Updating pgsql/contrib/pgcrypto/expected > cvs server: failed to create lock directory for >/projects/cvs

Re: [HACKERS] But _where_ is the anoncvs server ?

2001-10-02 Thread Oleg Bartunov
Marc, fix, please, permanently problem with permissions in anonymous CVS cvs server: Updating pgsql/contrib/pgcrypto/expected cvs server: failed to create lock directory for /projects/cvsroot/pgsql/contrib/pgcrypto/expected' (/projects/cvsroot/pgsql/contrib/pgcrypto/expected/#cvs.lock): Permiss

Re: [HACKERS] CVS changes

2001-10-02 Thread Marc G. Fournier
On Mon, 1 Oct 2001, Vince Vielhaber wrote: > On Tue, 2 Oct 2001, Thomas Lockhart wrote: > > > ... > > > Tom, what's missing or out of place? If I can I'll make sure it's there. > > > This morning I noticed a number of things that I thought were there really > > > weren't. > > > > What I was look

Re: [HACKERS] CVS changes

2001-10-02 Thread Marc G. Fournier
On Mon, 1 Oct 2001, Thomas Lockhart wrote: > I would like to resolve the 12 hour lag for CVSup and anoncvs service, > and frankly until that is resolved we should accept that we have a 12 > hour turnaround on most changes. Coincidentally, that is the rate at > which the docs are (or would be, if

Re: [HACKERS] Preparation for Beta

2001-10-02 Thread Marc G. Fournier
On Mon, 1 Oct 2001, Lamar Owen wrote: > On Monday 01 October 2001 04:13 pm, Thomas Lockhart wrote: > > > > the only changes to directory schemes is: > > > /var/spool/ftp/* for anon ftp > > > /usr/local/www/www for web stuff > > > directory structures under each should still be as

Re: [HACKERS] But _where_ is the anoncvs server ?

2001-10-02 Thread Marc G. Fournier
fixed, permanently, or should be ... let me know .. I've also just changed the 'pull down' to be every hour at *:59 ... On Tue, 2 Oct 2001, Hannu Krosing wrote: > Marko Kreen wrote: > > > > On Tue, Oct 02, 2001 at 09:49:03AM +0200, Hannu Krosing wrote: > > > HI, > > > > > > I've seen lots of

Re: [HACKERS] cvs tip problems

2001-10-02 Thread Marc G. Fournier
On Mon, 1 Oct 2001, Bruce Momjian wrote: > > > > I would propose that the reference machine be one that one of the > > > > "committers" owns, and be one whose owner is willing to *always* go > > > > through the effort to resolve regression test changes and differences. > > > Er ... wasn't that *y

Re: [HACKERS] CVS changes

2001-10-02 Thread Vince Vielhaber
On Mon, 1 Oct 2001, Bruce Momjian wrote: > > Until the dust settles the only two people with write access to either > > the developer or regular website will be Marc and myself. I have enough > > to do trying to get mirroring straight, keep up with changes to the sites, > > etc. that I really do

Re: [HACKERS] When scripting, which is better?

2001-10-02 Thread Justin Clift
Sorry guys, I didn't realise I actually sent this, it was part of an email I was putting together to achieve consistency in the scripts, but I thought I cancelled it when it got late in the morning. My apologies. Regards and best wishes, Justin Clift Bruce Momjian wrote: > > > Hi all, > > >

Re: [HACKERS] But _where_ is the anoncvs server ?

2001-10-02 Thread Hannu Krosing
Marko Kreen wrote: > > On Tue, Oct 02, 2001 at 09:49:03AM +0200, Hannu Krosing wrote: > > HI, > > > > I've seen lots of talk about anoncvs not working, but I > > can't even find out where it is ;( > > :pserver:[EMAIL PROTECTED]:/projects/cvsroot I got in now, but the general problems have now s

Re: [HACKERS] But _where_ is the anoncvs server ?

2001-10-02 Thread Marko Kreen
On Tue, Oct 02, 2001 at 09:49:03AM +0200, Hannu Krosing wrote: > HI, > > I've seen lots of talk about anoncvs not working, but I > can't even find out where it is ;( :pserver:[EMAIL PROTECTED]/projects/cvsroot -- marko ---(end of broadcast)---

[HACKERS] But _where_ is the anoncvs server ?

2001-10-02 Thread Hannu Krosing
HI, I've seen lots of talk about anoncvs not working, but I can't even find out where it is ;( The old address gives [hannu@taru pgsql]$ ../update.cvs cvs update: authorization failed: server postgresql.org rejected access to /home/projects/pgsql/cvsroot for user anoncvs the link from deve