|
1 |
| -/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/prepare.c,v 1.22 2007/10/03 11:11:12 meskes Exp $ */ |
| 1 | +/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/prepare.c,v 1.23 2007/11/05 20:57:24 tgl Exp $ */ |
2 | 2 |
|
3 | 3 | #definePOSTGRES_ECPG_INTERNAL
|
4 | 4 | #include"postgres_fe.h"
|
@@ -31,8 +31,8 @@ typedef struct
|
31 | 31 | }stmtCacheEntry;
|
32 | 32 |
|
33 | 33 | staticintnextStmtID=1;
|
34 |
| -conststaticintstmtCacheNBuckets=2039;/* # buckets - a prime # */ |
35 |
| -conststaticintstmtCacheEntPerBucket=8;/* # entries/bucket */ |
| 34 | +staticconstintstmtCacheNBuckets=2039;/* # buckets - a prime # */ |
| 35 | +staticconstintstmtCacheEntPerBucket=8;/* # entries/bucket */ |
36 | 36 | staticstmtCacheEntrystmtCacheEntries[16384]= {{0,{0},0,0,0}};
|
37 | 37 |
|
38 | 38 | staticstructprepared_statement*find_prepared_statement(constchar*name,
|
|