Re: [HACKERS] Duplicate variable declared?

2004-04-22 Thread mike g
Joe Conway wrote: mike g wrote: In file postgresql-7.4.2/src/backend/utils/fmgrtab.c This is an automatically generated file. The reason for duplicate array_push declarations is that one-and-the-same array_push function is used to implement two SQL functions, array_append and array_prepend

Re: [HACKERS] Duplicate variable declared?

2004-04-20 Thread Joe Conway
mike g wrote: In file postgresql-7.4.2/src/backend/utils/fmgrtab.c This is an automatically generated file. The reason for duplicate array_push declarations is that one-and-the-same array_push function is used to implement two SQL functions, array_append and array_prepend. I don't imagine the du

[HACKERS] Duplicate variable declared?

2004-04-20 Thread mike g
Hello, In file postgresql-7.4.2/src/backend/utils/fmgrtab.c line 336 and line 337 are both equal to "extern Datum array_push (PG_FUNCTION_ARGS);" I have created a simple perl script that examines files line by line and if 2 in a row match prints a result. Sometimes it catches bad cvs checkins o