aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
...
* |Subject: Postgres patch: Assert attribute type matchMarc G. Fournier1996-09-16
| | | | | | | | | | | | |Here's a patch for Version 2 only. It just adds an Assert to catch some |inconsistencies in the catalog classes. | |-- |Bryan Henderson Phone 408-227-6803 |San Jose, California |
* Add use of INDEXSCAN_PATCH to config.h instead of putting it in Makefile.globalMarc G. Fournier1996-09-10
|
* Fixes:Marc G. Fournier1996-09-10
| | | | | | | | | | | | | | | | | | | | | The problem is that the function arguments are not considered as possible key candidates for index scan and so only a sequential scan is possible inside the body of a function. I have therefore made some patches to the optimizer so that indices are now used also by functions. I have also moved the plan debug message from pg_eval to pg_plan so that it is printed also for plans genereated for function execution. I had also to add an index rescan to the executor because it ignored the parameters set in the execution state, they were flagged as runtime variables in ExecInitIndexScan but then never used by the executor so that the scan were always done with any key=1. Very odd. This means that an index rescan is now done twice for each function execution which uses an index, the first time when the index scan is initialized and the second when the actual function arguments are finally available for the execution. I don't know what is the cost of an double index scan but I suppose it is anyway less than the cost of a full sequential scan, at leat for large tables. This is my patch, you must also add -DINDEXSCAN_PATCH in Makefile.global to enable the changes. Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
* Fixes:Marc G. Fournier1996-09-10
| | | | | | | | | | | | | The comparison routines for text and char data type give incorrect results if the input data contains characters greater than 127. As these routines perform the comparison using signed char variables all character codes greater than 127 are interpreted as less than 0. These codes are used to encode the iso8859 char sets. The other text-like data types seem to work as expected as they use unsigned chars in comparisons. Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
* Cleaned up a spurious '-' ...Marc G. Fournier1996-09-10
| | | | Pointed out by: ernst.molitor@uni-bonn.de
* modifications required to reflect centralized include filesMarc G. Fournier1996-08-28
|
* modifications required to reflect centralized include filesMarc G. Fournier1996-08-28
|
* Clean up th ecompile process by centralizing the include filesMarc G. Fournier1996-08-28
| | | | | - code compile tested, but due to a yet unresolved problem with parse.h's creation, compile not completed...
* Went back one directory too far for the -I includeMarc G. Fournier1996-08-28
|
* Path to pg_proc.h to create fmgrtab.c change to include/catalogMarc G. Fournier1996-08-28
|
* More cleanups of the include filesMarc G. Fournier1996-08-28
| | | | - centralizing to simplify the -I's required to compile
* Moved the include files to src/include/regexMarc G. Fournier1996-08-28
|
* Redundant -I pointer to port/<portname>Marc G. Fournier1996-08-28
|
* c.h is included in postgres.h alreadyMarc G. Fournier1996-08-28
|
* Should finish cleaning out the machine.h includesMarc G. Fournier1996-08-27
|
* Remove include of machine.hMarc G. Fournier1996-08-27
|
* Remove all traces of machine.h and redundant calls to c.h whereMarc G. Fournier1996-08-27
| | | | postgres.h already pulled in (postgres.h includes c.h)
* #ifndef the include file like the rest, so that it doesn't get pulledMarc G. Fournier1996-08-27
| | | | in twice...
* Oops, win32 does have one more thing in its machine.h...move thatMarc G. Fournier1996-08-27
| | | | define to config.h
* We have a machine.h for each platform just because of BLCKSZ, and everyMarc G. Fournier1996-08-27
| | | | | | platform with a machine.h has the same BLCKSZ? Consolidate machine.h into config.h
* #include "postgres.h" exists in most .c files in system, so addingMarc G. Fournier1996-08-27
| | | | | #include "config.h" here will (should?) ensure that any platform dependencies defined in config.h should be reflected in all .c files...
* Moved from backend/access to include/accessMarc G. Fournier1996-08-27
|
* The use of include files is a mess...alot of redundancy, it seems...Marc G. Fournier1996-08-27
| | | | First Step: Centralize them under on src/include hierarchy
* added #include "config.h" for ESCAPE_PATCH defineMarc G. Fournier1996-08-27
|
* Removed -DESCAPE_PATCH ... moved to include/config.hMarc G. Fournier1996-08-27
|
* At this rate, maybe next year sometime I'll get this done...Marc G. Fournier1996-08-27
| | | | | Goals: reduce the difficulty of porting from platform to platform, release to release, but moving as much as possible into config.h
* One file at a time, one directory after the other...this is goingMarc G. Fournier1996-08-27
| | | | to be one helluva chore to clean up...
* first attempt at centralizing config information for portsMarc G. Fournier1996-08-27
|
* first pass...move some of the "Port" dependencies to src/include/config.hMarc G. Fournier1996-08-27
|
* Reduce -DPORTNAME_$(PORTNAME) down to just -D$(PORTNAME)Marc G. Fournier1996-08-27
|
* Its a start...Marc G. Fournier1996-08-27
|
* Create support for a "common" include directory for the sourceMarc G. Fournier1996-08-27
| | | | | | | | tree, instead of having include files all over the place... Immediate goal...a 'config.h' file so that we can make #ifdef's being used throughout the code more a rarity as far as porting is concerned
* Damn, we really need to clean up this "include file" dilemna...Marc G. Fournier1996-08-26
| | | | include files *everywhere* ;(
* The patch that is applied at the end of the email makes sure that theseMarc G. Fournier1996-08-26
| | | | | | | | | | conditions are always met. The patch can be applied to any version of Postgres95 from 1.02 to 1.05. After applying the patch, queries using indices on bpchar and varchar fields should (hopefully ;-) ) always return the same tuple set regardless to the fact whether indices are used or not. Submitted by: Gerhard Reithofer <tbr_laa@AON.AT>
* Oops, thanks to Dan McGuirk for pointing out that I missed part ofMarc G. Fournier1996-08-26
| | | | | | the commit :( Here's the rest of the GiST code thta was missing...
* Quick fix of the PG-GiST import pointed out by DanMarc G. Fournier1996-08-26
|
* There, now we support GiST...now what? :)Marc G. Fournier1996-08-26
|
* Roll in patch that fixes problem with sed 3.0Marc G. Fournier1996-08-26
| | | | submitted by: Dan McGuirk
* Fix prototype for dumpClassesMarc G. Fournier1996-08-26
|
* This patch for Versions 1 and 2 corrects the following bug:Marc G. Fournier1996-08-24
| | | | | | | | | | | | | | | | | | | | | In a catalog class that has a "name" type attribute, UPDATEing of an instance of that class may destroy all of the attributes of that instance that are stored as or after the "name" attribute. This is caused by the alignment value of the "name" type being set to "double" in Class pg_type, but "integer" in Class pg_attribute. Postgres constructs a tuple using double alignment, but interprets it using integer alignment. The fix is to change the alignment to integer in pg_type. Note that this corrects the problem for new Postgres systems. Existing databases already contain the error and it can't easily be repaired because this very bug prevents updating the class that contains it. -- Bryan Henderson Phone 408-227-6803 San Jose, California
* The patch does several things:Marc G. Fournier1996-08-24
| | | | | | | | | | | | | | | | | | | It adds a WITH OIDS option to the copy command, which allows dumping and loading of oids. If a copy command tried to load in an oid that is greater than its current system max oid, the system max oid is incremented. No checking is done to see if other backends are running and have cached oids. pg_dump as its first step when using the -o (oid) option, will copy in a dummy row to set the system max oid value so as rows are loaded in, they are certain to be lower than the system oid. pg_dump now creates indexes at the end to speed loading Submitted by: Bruce Momjian <maillist@candle.pha.pa.us>
* Here's the fix for the problem that Evan Champion reported today.Marc G. Fournier1996-08-24
| | | | | | | | | This presumably corrects a problem of initdb failing on systems that have an awk that is sensitive to this. -- Bryan Henderson Phone 408-227-6803 San Jose, California
* |May I suggest to add access to the oid of an insertedMarc G. Fournier1996-08-21
| | | | | | | | | | | | | | | |record, by a small patch to libpq++? At least until the |feature that will allow dumped oid's to be re-loaded into |a database becomes available, I need access to the oids |of newly created records... To this end, I have written a |three-line wrapper for the PQoidStatus function in libpq and |named this wrapper OidStatus() (I'd appreciate suggestions for |a name that would better fit into the general naming scheme). | |Regards, | |Ernst |
* Here's a patch for Versions 1 and 2 that fixes the following bug:Marc G. Fournier1996-08-21
| | | | | | | | | | | | | | | | | | | | | | | When you try to do any UPDATE of the catalog class pg_class, such as to change ownership of a class, the backend crashes. This is really two serial bugs: 1) there is a hardcoded copy of the schema of pg_class in the postgres program, and it doesn't match the actual class that initdb creates in the database; 2) Parts of postgres determine whether to pass an attribute value by value or by reference based on the attbyval attribute of the attribute in class pg_attribute. Other parts of postgres have it hardcoded. For the relacl[] attribute in class pg_class, attbyval does not match the hardcoded expectation. The fix is to correct the hardcoded schema for pg_attribute and to change the fetchatt macro so it ignores attbyval for all variable length attributes. The fix also adds a bunch of logic documentation and extends genbki.sh so it allows source files to contain such documentation. -- Bryan Henderson Phone 408-227-6803 San Jose, California
* USE_TCL should default to false, ntot true...Marc G. Fournier1996-08-21
|
* BSD$$_derived needs -ltermcap for psqlMarc G. Fournier1996-08-21
|
* Erk, missed adding the required ilbrary itselfMarc G. Fournier1996-08-21
|
* Quick fix for compiling psql...Marc G. Fournier1996-08-21
|
* command line flag for expanded display '-x' had logic reversedJulian Assange1996-08-21
|
* Bring in changes to READLINE/HISTORY definesMarc G. Fournier1996-08-20
|