aboutsummaryrefslogtreecommitdiff
path: root/src/backend/nodes/readfuncs.c
Commit message (Collapse)AuthorAge
...
* OK, folks, here is the pgindent output.Bruce Momjian1998-09-01
|
* Renaming cleanup, no pgindent yet.Bruce Momjian1998-09-01
|
* MergeSort was sometimes called mergejoin and was confusing. NowBruce Momjian1998-08-04
| | | | it is now only mergejoin.
* Allow index use with OR clauses.Bruce Momjian1998-08-01
|
* Rename Rel to RelOptInfo.Bruce Momjian1998-07-18
|
* Fix explain for union and inheritance. Rename Append structureBruce Momjian1998-07-15
| | | | members to be clearer. Fix cost computation for these.
* Major man page update from Tom Lane. cBruce Momjian1998-07-14
|
* Remove un-needed braces around single statements.Bruce Momjian1998-06-15
|
* FIx confusion over SORT and SORTCLAUSE in node handling.Bruce Momjian1998-04-27
|
* pgindent run before 6.3 release, with Thomas' requested changes.Bruce Momjian1998-02-26
|
* Add handling for new RangeTblEntry column name.Bruce Momjian1998-02-21
|
* Constlen can be -1, so make it a signed type.Bruce Momjian1998-02-21
|
* Support for subselects.Vadim B. Mikheev1998-02-13
| | | | (Have to re-visit readfuncs.c)
* Pass around typmod as int16.Bruce Momjian1998-02-10
|
* Pass attypmod through to executor by adding to Var and Resdom.Bruce Momjian1998-02-10
|
* Add Var.varlevelup to code. More parser cleanup.Bruce Momjian1998-01-20
|
* Parser cleanup.Bruce Momjian1998-01-20
| | | | Add lock to i386 asm.
* Fix problem with nodes handling.Bruce Momjian1998-01-19
|
* Creates the SubLink structure, and the Query->hasSubLink field,Bruce Momjian1998-01-17
| | | | | | | | with supporting code. Creates SubLink node in gram.y. psql.c patch for newatttypmod field.
* Remove Query->qry_aggs and qry_numaggs and replace with Query->hasAggs.Bruce Momjian1998-01-15
| | | | | | | | | Pass List* of Aggregs into executor, and create needed array there. No longer need to double-processs Aggregs with second copy in Query. Fix crash when doing: select sum(x+1) from test where 1 > 0;
* Goodbye ABORT. Hello ERROR for all errors.Bruce Momjian1998-01-07
|
* Fix for views and outnodes.Bruce Momjian1998-01-07
|
* Cleanup of sort nodes and use of strtoul .Bruce Momjian1998-01-06
|
* Change some labels in bootparse to make ctags happy. Clean up ↵Bruce Momjian1998-01-06
| | | | outfunc/readfunc code and add missing fields for Query structure and new Union fields. Fix optimizer bug shown in new \do command. Change WARN to ERROR in contrib and regression stuff.
* Change elog(WARN) to elog(ERROR) and elog(ABORT).Bruce Momjian1998-01-05
|
* UNION work for UNION ALL and other union stuff.Bruce Momjian1997-12-27
|
* Remove Existential, and ifdef out generate_fjoin. Neither did anything.Bruce Momjian1997-12-18
|
* Rename strNcpy to StrNCpy, and change third parameter.Bruce Momjian1997-10-25
|
* Used modified version of indent that understands over 100 typedefs.Bruce Momjian1997-09-08
|
* Another PGINDENT run that changes variable indenting and case label ↵Bruce Momjian1997-09-08
| | | | indenting. Also static variable indenting.
* Massive commit to run PGINDENT on all *.c and *.h files.Bruce Momjian1997-09-07
|
* Fix pgproc names over 15 chars in output. Add strNcpy() function. remove ↵Bruce Momjian1997-08-12
| | | | some (void) casts that are unnecessary.
* Added _readAggreg() to work with T_Aggreg type.Vadim B. Mikheev1997-05-12
|
* All external function definitions now have prototypes that are checked.Bruce Momjian1996-11-10
|
* Compile and warning cleanupBruce Momjian1996-11-08
|
* Fixes:Marc G. Fournier1996-07-31
| | | | | | | | | | | | | | | | | | | | | | In postgres95/src/backend/nodes/readfuncs, lines 1188 and 1189, local_node->relname is taken to point to a NameType, while its defined as a pointer to char. Both the casting to Name and the call of namestrcpy should, IMHO, be changed appropriately (first patch). As far as I could see from the Linux signal header file, a signal handler is declared as typedef void (*__sighandler_t)(int); Few changes to postgres95/src/backend/storage/lmgr/proc.c seem appropriate to comply with this. Finally, postgres95/src/bin/pg_version/pg_version.c defines a function GetDataHome (by default, returning an integer) and returns NULL in the function, which isn't an integer... Submitted by: ernst.molitor@uni-bonn.de
* Postgres95 1.01 Distribution - Virgin SourcesPG95-1_01Marc G. Fournier1996-07-09