| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Teach parse_coerce about non-cachable functions (actually, | Tom Lane | 1999-10-02 | 1 | -32/+17 |
| | | | | | make it call eval_const_expressions() so that it doesn't have to know). | ||||
| * | coerce_type() failed to guard against trying to convert a NULL | Tom Lane | 1999-08-24 | 1 | -17/+17 |
| | | | | | | constant to a different type. Not sure that this could happen in ordinary parser usage, but it can in some new code I'm working on... | ||||
| * | Revise parse_coerce() to handle coercion of int and float | Tom Lane | 1999-08-05 | 1 | -56/+83 |
| | | | | | | constants, not only string constants, at parse time. Get rid of parser_typecast2(), which is bogus and redundant... | ||||
| * | Move some system includes into c.h, and remove duplicates. | Bruce Momjian | 1999-07-17 | 1 | -2/+1 |
| | | |||||
| * | Final cleanup. | Bruce Momjian | 1999-07-16 | 1 | -4/+4 |
| | | |||||
| * | Remove unused #includes in *.c files. | Bruce Momjian | 1999-07-15 | 1 | -5/+1 |
| | | |||||
| * | Defend against function calls with more than 8 arguments (code | Tom Lane | 1999-06-17 | 1 | -3/+4 |
| | | | | | | used to overrun its fixed-size arrays before detecting error; not cool). Also, replace uses of magic constant '8' with 'MAXFARGS'. | ||||
| * | Avoid redundant SysCache searches in coerce_type, for another | Tom Lane | 1999-05-29 | 1 | -5/+7 |
| | | | | | few percent speedup in INSERT... | ||||
| * | pgindent run over code. | Bruce Momjian | 1999-05-25 | 1 | -11/+13 |
| | | |||||
| * | Fix for DEFAULT ''. | Bruce Momjian | 1999-05-22 | 1 | -6/+12 |
| | | |||||
| * | Make postgres prompt backend>, and remove PARSEDEBUG. | Bruce Momjian | 1999-05-22 | 1 | -100/+3 |
| | | |||||
| * | Upgrade to PyGreSQL (2.4) | Bruce Momjian | 1999-05-19 | 1 | -2/+1 |
| | | |||||
| * | Change error messages to oids come out as %u and not %d. Change has no | Bruce Momjian | 1999-05-10 | 1 | -9/+9 |
| | | | | | real affect now. | ||||
| * | From: Tatsuo Ishii <t-ishii@sra.co.jp> | Marc G. Fournier | 1999-02-21 | 1 | -2/+2 |
| | | | | | | | 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. | ||||
| * | Implement CASE expression. | Thomas G. Lockhart | 1998-12-04 | 1 | -2/+2 |
| | | |||||
| * | Remove duplicate CIDR funcs by using coerce entries. | Bruce Momjian | 1998-10-22 | 1 | -1/+10 |
| | | |||||
| * | Make functions static or ifdef NOT_USED. Prevent pg_version creation. | Bruce Momjian | 1998-10-08 | 1 | -2/+4 |
| | | |||||
| * | Fix for constbyval . | Bruce Momjian | 1998-10-01 | 1 | -5/+4 |
| | | |||||
| * | OK, folks, here is the pgindent output. | Bruce Momjian | 1998-09-01 | 1 | -116/+144 |
| | | |||||
| * | Renaming cleanup, no pgindent yet. | Bruce Momjian | 1998-09-01 | 1 | -11/+11 |
| | | |||||
| * | Include OID as a built-in type. | Thomas G. Lockhart | 1998-08-14 | 1 | -2/+6 |
| | | |||||
| * | Allow floating point constants for "def_arg" numeric arguments. | Thomas G. Lockhart | 1998-07-08 | 1 | -1/+3 |
| | | | | | | | 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. | ||||
| * | Do type conversion to match columns in UNION clauses. | Thomas G. Lockhart | 1998-05-29 | 1 | -2/+2 |
| | | | | | | | | | | | | Currently force the type to match the _first_ select in the union. Move oper_select_candidate() from parse_func.c to parse_oper.c. Throw error inside of oper_inexact() if no match for binary operators. Check more carefully that types can be coerced even if there is only one candidate operator in oper_inexact(). Fix up error messages for more uniform look. Remove unused code. Fix up comments. | ||||
| * | Add capabilities for automatic type conversion. | Thomas G. Lockhart | 1998-05-09 | 1 | -0/+560 |
