- 01 Jun, 1997 3 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 31 May, 1997 3 commits
-
-
Bruce Momjian authored
-
Vadim B. Mikheev authored
elog (WARN, "attribute %s not found", colname);
-
Vadim B. Mikheev authored
then we try to look at our right sibling first, but not farther, as it was in yesterday fix.
-
- 30 May, 1997 3 commits
-
-
Vadim B. Mikheev authored
last page in chain of duplicates).
-
Vadim B. Mikheev authored
-
Thomas G. Lockhart authored
Remove references to modf() which is buggy on some platforms (Sparc/Linux).
-
- 26 May, 1997 3 commits
-
-
Thomas G. Lockhart authored
-
Marc G. Fournier authored
Subject: [PATCHES] INSTALL changes This patch modifies the INSTALL file. The changes are: - SPARC/Linux-ELF was added to the list of supported platforms. The special notes for it at the bottom of the file were removed. - Changed "database server" to "RDBMS database server". - Modified step 6 so that when you restore your database the tables will be owned by the original owners instead of the postgresql superuser. - Modified step 19 on diagnosing the regression tests for the SPARC Linux platform with a beta release. - Other minor changes.
-
Marc G. Fournier authored
Subject: [PATCHES] pqcomprim.c patch This is the patch by Robert Bruccoleri to fix the endian problem. (Actually, it's the reverse of his patch. He must have gotten the order wrong.)
-
- 25 May, 1997 1 commit
-
-
Marc G. Fournier authored
These are undocumented in the man pages though...should they be removed? Reported by: "A. Duursma" <it@portsite.nl>
-
- 24 May, 1997 2 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 23 May, 1997 5 commits
-
-
Thomas G. Lockhart authored
Fix up decoder field masks for timespan and reltime.
-
Thomas G. Lockhart authored
Move date and time field type labels to less than 32 to allow use as masks.
-
Vadim B. Mikheev authored
fdleft = pg_nofile() - allocatedFiles - nfile; looks more realistic, but too noisy - fdleft = pg_nofile() - allocatedFiles; restored.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 22 May, 1997 12 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Vadim B. Mikheev authored
/* * RelationFlushRelation () below will flush relation information * from the cache. We must call smgrclose to flush relation * information from SMGR & FMGR, too. We assume that for temp * relations smgrunlink is already called by heap_destroyr * and we skip smgrclose for them. - vadim 05/22/97 */ smgrclose(reln->rd_rel->relsmgr, reln); - it avoids memory leaks in SMGR & VFD. RelationFlushRelation(): there is no more call FileInvalidate(RelationGetSystemPort(relation)); - invalid (FileInvalidate() expects File, not SMGR' fd) - unuseful anyway.
-
Vadim B. Mikheev authored
mdunlink() and mdclose() (too !!!) now free MdfdVec for relation and add it to free list, so it may be re-used for another relation later. 2. Fix VFD-manager memory leak (found by Massimo ... and me): mdunlink() has to call FileUnlink() to free allocation for fileName and add the Vfd slot to the free list.
-
Vadim B. Mikheev authored
2. FreeFile() has to do nothing with nfile (# of files opened by VFD manager).
-
Vadim B. Mikheev authored
/* ** You can have as many strategies as you please in GiSTs, as ** long as your consistent method can handle them */ #define GISTNStrategies 100 ^^^ - too big number: strat.h->StrategyEvaluationData->StrategyExpression expression[12] ^^ - so 12 is real max # of strategies, or StrategyEvaluationIsValid crashes backend (called if CASSER defined).
-
Vadim B. Mikheev authored
2. Re-initialize keys in gistrescan (if gist used in inner scan).
-
Marc G. Fournier authored
To: pgsql-patches@postgreSQL.org Subject: [PATCHES] DROP AGGREGATE gram.y typo... Somehow I dropped a comma in the gram.y part (line 129) of my patch for drop aggregate. Here's a correct patch for gram.y. PS. I hope I got the right comma, manually applied :) (scrappy)
-
Marc G. Fournier authored
Subject: [PATCHES] DROP AGGREGATE patch/fix. Here's a patch that fixes the DROP AGGREGATE command to delete the desired aggregate for a specific type.
-
Marc G. Fournier authored
-
Marc G. Fournier authored
Subject: [PATCHES] AIX make patch resubmitted. Misc patches for AIX from Darren: 1) New src/makefiles/Makefile.aix This patch should only be applied if the following patch (4) is applied to backend/Makefile! Still looking into having configure determine the last line to do the shared link. The 325 code will work for 41, so I put that in as the default. Included a commented out 41 line for completeness. *and* 4) Patch the backend Makefile. I've reviewed this patch with respect to the other ports that use MAKE_EXPORTS (svr4 and univel) as closely as I could and I don't see where it will break them. If it does, please let me know and I'll rework it somehow.
-
Marc G. Fournier authored
Subject: [PATCHES] Re: [PORTS] AIX 6.1 fixes... Here are the patches for the two things that wouldn't make it thru the AIX compiler. The geo_ops.c change is harmless I believe. The nbtcompare.c patch fixes me, but I don't know about any other ports. Maybe wait on that one until Vadim decides what to do about the unsigned vs signed chars varlena issue.
-
- 21 May, 1997 2 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 20 May, 1997 6 commits
-
-
Bruce Momjian authored
-
Vadim B. Mikheev authored
relation->rd_att (relation' TupleDesc).
-
Vadim B. Mikheev authored
-
Vadim B. Mikheev authored
Because of * resetpsort - resets (frees) malloc'd memory for an aborted Xaction * * Not implemented yet.
-
Vadim B. Mikheev authored
all local buffers @ xact commit, so accordingly nextFreeLocalBuf is first local buffer now. It helps to avoid unnecessary local buffer allocations in LocalBufferAlloc() latter ("memmory leaks" in 'order by'). 2. ResetLocalBufferPool() lost allocated local buffers: memset(LocalBufferDescriptors, 0, sizeof(BufferDesc) * NLocBuffer); (local buffers leak @ xact aborts).
-
Vadim B. Mikheev authored
-