aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/oracle_compat.c
Commit message (Collapse)AuthorAge
* > It seems there is a mistake in substr function:Marc G. Fournier1998-01-13
| | | | | | | | | | | | | | | > then you try get substr, which consists only of last char in string > you get all string > > For example: > userbase=> select substr('123456', 6,1) ; > substr > ------ > 123456 > (1 row) > From Edmund Mergl <E.Mergl@bawue.de>
* 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
|
* Add routines for text trimming on both ends, substring, and string position.Thomas G. Lockhart1997-07-29
| | | | Used to support SQL92 compatibility.
* From: Erich Stamberger <eberger@gewi.kfunigraz.ac.at>Marc G. Fournier1997-05-07
| | | | Subject: [PATCHES] oracle_compat functions core dumping on NULL-fields
* oracle_compat.c fixed for function overloading...Marc G. Fournier1997-03-16
| | | | By: From: Edmund Mergl <mergl@nadia.s.bawue.de>
* Remove extra functions temporarily while a proper fix is found...Marc G. Fournier1997-03-16
|
* Update oracle_compat.cMarc G. Fournier1997-03-15
|
* Add prototypes for oracle-compat functions. Rename geo-*.c adt to geo_*.cBruce Momjian1997-03-09
|
* This is a set of single row character functions, defined for the datatypeMarc G. Fournier1997-03-04
text, which are supposed to behave exactly as their Oracle counterparts. From: Edmund Mergl <E.Mergl@bawue.de>