Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Rewrite parser's handling of INSERT ... SELECT so that processing | Tom Lane | 1999-07-19 |
| | | | | | | | | | of the SELECT part of the statement is just like a plain SELECT. All INSERT-specific processing happens after the SELECT parsing is done. This eliminates many problems, e.g. INSERT ... SELECT ... GROUP BY using the wrong column labels. Ensure that DEFAULT clauses are coerced to the target column type, whether or not stored clause produces the right type. Substantial cleanup of parser's array support. | ||
* | Move some system includes into c.h, and remove duplicates. | Bruce Momjian | 1999-07-17 |
| | |||
* | Final cleanup. | Bruce Momjian | 1999-07-16 |
| | |||
* | Clean up #include in /include directory. Add scripts for checking includes. | Bruce Momjian | 1999-07-15 |
| | |||
* | pgindent run over code. | Bruce Momjian | 1999-05-25 |
| | |||
* | Fix for DEFAULT ''. | Bruce Momjian | 1999-05-22 |
| | |||
* | Change resjunk to a boolean. | Bruce Momjian | 1999-05-17 |
| | |||
* | Clean up error messages. | Thomas G. Lockhart | 1999-02-23 |
| | |||
* | From: Tatsuo Ishii <t-ishii@sra.co.jp> | Marc G. Fournier | 1999-02-21 |
| | | | | | | Ok. I made patches replacing all of "#if FALSE" or "#if 0" to "#ifdef NOT_USED" for current. I have tested these patches in that the postgres binaries are identical. | ||
* | Change my-function-name-- to my_function_name, and optimizer renames. | Bruce Momjian | 1999-02-13 |
| | |||
* | OK, folks, here is the pgindent output. | Bruce Momjian | 1998-09-01 |
| | |||
* | Renaming cleanup, no pgindent yet. | Bruce Momjian | 1998-09-01 |
| | |||
* | heap_fetch requires buffer pointer, must be released; heap_getnext | Bruce Momjian | 1998-08-19 |
| | | | | | | | | | | | | | no longer returns buffer pointer, can be gotten from scan; descriptor; bootstrap can create multi-key indexes; pg_procname index now is multi-key index; oidint2, oidint4, oidname are gone (must be removed from regression tests); use System Cache rather than sequential scan in many places; heap_modifytuple no longer takes buffer parameter; remove unused buffer parameter in a few other functions; oid8 is not index-able; remove some use of single-character variable names; cleanup Buffer variables usage and scan descriptor looping; cleaned up allocation and freeing of tuples; 18k lines of diff; | ||
* | From: Jan Wieck <jwieck@debis.com> | Marc G. Fournier | 1998-08-18 |
| | | | | | | | | | Hi, as proposed here comes the first patch for the query rewrite system. <for details, see archive dated Mon, 17 Aug 1998> | ||
* | Allow floating point constants for "def_arg" numeric arguments. | Thomas G. Lockhart | 1998-07-08 |
| | | | | | | Used in the generic "CREATE xxx" parsing. Do some automatic type conversion for inserts from other columns. Previous trouble with "resjunk" regression test remains for now. | ||
* | pgindent run before 6.3 release, with Thomas' requested changes. | Bruce Momjian | 1998-02-26 |
| | |||
* | Pass attypmod through to executor by adding to Var and Resdom. | Bruce Momjian | 1998-02-10 |
| | |||
* | FIx for varchar(), char() and INSERT .. SELECT. | Bruce Momjian | 1998-02-05 |
| | |||
* | Add Var.varlevelup to code. More parser cleanup. | Bruce Momjian | 1998-01-20 |
| | |||
* | Parser cleanup. | Bruce Momjian | 1998-01-20 |
| | | | | Add lock to i386 asm. | ||
* | New pg_attribute.atttypmod for type-specific information like | Bruce Momjian | 1998-01-16 |
| | | | | | | | | | | | varchar length. Cleans up code so attlen is always length. Removed varchar() hack added earlier. Will fix bug in selecting varchar() fields, and varchar() can be variable length. | ||
* | Change elog(WARN) to elog(ERROR) and elog(ABORT). | Bruce Momjian | 1998-01-05 |
| | |||
* | Fix for count(*), aggs with views and multiple tables and sum(3). | Bruce Momjian | 1998-01-04 |
| | |||
* | Make parser functions static where possible. | Bruce Momjian | 1997-11-26 |
| | |||
* | Cleanup up include files. | Bruce Momjian | 1997-11-26 |
| | |||
* | Break parser functions into smaller files, group together. | Bruce Momjian | 1997-11-25 |