|
Home > Archive > PostgreSQL Bugs > December 2005 > BUG #2091: ecpglib.h needs to be updated....
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
BUG #2091: ecpglib.h needs to be updated....
|
|
| Chuck Wegrzyn 2005-12-03, 11:23 am |
|
The following bug has been logged online:
Bug reference: 2091
Logged by: Chuck Wegrzyn
Email address: lists@garbagedump.com
PostgreSQL version: 8.1.0
Operating system: Linux
Description: ecpglib.h needs to be updated....
Details:
There are a number of places in function prototypes of ECPGdo, ECPGprepare
and ECPGdeallocate where 'char *' should be changed to 'const char *'. I am
sure the other functions have similar problems.
In trying to get my make's to work cleanly (no spurious warnings), I put
-fwriteable-string as an option. But this is a deprecated option in gcc,
which spits out a complaint. So the only way to stop the madness is to cast
the function prototypes correctly. Is this a possibility for the next
release (or is it in there already)?
---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
choose an index scan if your joining column's datatypes do not
match
| |
| Bruce Momjian 2005-12-03, 11:23 am |
|
This will be fixed when we release 8.1.1, which is planned for next
week. Before then, you can grab from CVS using the 8.1 tag.
---------------------------------------------------------------------------
Chuck Wegrzyn wrote:
>
> The following bug has been logged online:
>
> Bug reference: 2091
> Logged by: Chuck Wegrzyn
> Email address: lists@garbagedump.com
> PostgreSQL version: 8.1.0
> Operating system: Linux
> Description: ecpglib.h needs to be updated....
> Details:
>
> There are a number of places in function prototypes of ECPGdo, ECPGprepare
> and ECPGdeallocate where 'char *' should be changed to 'const char *'. I am
> sure the other functions have similar problems.
>
> In trying to get my make's to work cleanly (no spurious warnings), I put
> -fwriteable-string as an option. But this is a deprecated option in gcc,
> which spits out a complaint. So the only way to stop the madness is to cast
> the function prototypes correctly. Is this a possibility for the next
> release (or is it in there already)?
>
> ---------------------------(end of broadcast)---------------------------
> TIP 9: In versions below 8.0, the planner will ignore your desire to
> choose an index scan if your joining column's datatypes do not
> match
>
--
Bruce Momjian | http://candle.pha.pa.us
pgman@candle.pha.pa.us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073
---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
choose an index scan if your joining column's datatypes do not
match
| |
| Tom Lane 2005-12-03, 11:23 am |
| "Chuck Wegrzyn" <lists@garbagedump.com> writes:
> There are a number of places in function prototypes of ECPGdo, ECPGprepare
> and ECPGdeallocate where 'char *' should be changed to 'const char *'.
This was already addressed:
http://archives.postgresql.org/pgsq...12/msg00008.php
Do you see anything missed by that patch?
regards, tom lane
---------------------------(end of broadcast)---------------------------
TIP 6: explain analyze is your friend
|
|
|
|
|