aboutsummaryrefslogtreecommitdiff
path: root/src/backend
Commit message (Collapse)AuthorAge
* Clean up handling of environment variables in path names.Thomas G. Lockhart1997-11-10
|
* Clean up indenting.Bruce Momjian1997-11-10
|
* Fix case issues with quotes.Bruce Momjian1997-11-10
|
* Patch from Goran ThyniBruce Momjian1997-11-10
|
* From: Bryan Henderson <bryanh@giraffe.netgate.net>Marc G. Fournier1997-11-09
| | | | | | My analysis of the formerly mentioned IPC reinitialization problem was hampered by an imprecise error message. I have rewritten it so it is clearer and more accurate.
* From: Bryan Henderson <bryanh@giraffe.netgate.net>Marc G. Fournier1997-11-09
| | | | | The attached patch makes elog() write the message to stderr if there is no frontend to talk to.
* Add Unix domain socket support, from Goran Thyni, goran@bildbasen.seBruce Momjian1997-11-07
|
* Routines for database initial access info and support.Thomas G. Lockhart1997-11-07
|
* Add database.c for database initial access info and support.Thomas G. Lockhart1997-11-07
|
* Implement CREATE DATABASE/WITH LOCATION=.Thomas G. Lockhart1997-11-07
| | | | | | | Implement SET keyword = DEFAULT and SET TIME ZONE DEFAULT. Re-enable JOIN= option in CREATE OPERATOR statement (damaged for v6.2). Allow more SQL and/or Postgres reserved words as column identifiers or, if there are shift/reduce problems, at least as column labels.
* Enable SET value = DEFAULT by passing null parameter to parsers.Thomas G. Lockhart1997-11-07
| | | | Enable SET TIME ZONE using TZ environment variable.
* Support alternate database locations.Thomas G. Lockhart1997-11-07
|
* Change phrasing of input error message.Thomas G. Lockhart1997-11-07
| | | | Add istrue() and isfalse() routines to implement SQL3 IS TRUE and IS FALSE.
* Remove NOT_USED for Massimo.Bruce Momjian1997-11-05
|
* Good Bye, Time Travel!Vadim B. Mikheev1997-11-02
|
* Fix acl error, and remove duplicate pqtrace.Bruce Momjian1997-11-01
|
* Indexes for LIKE and ~, !~ operations.Bruce Momjian1997-10-31
|
* Remove duplocate lock_timeout value.Bruce Momjian1997-10-30
|
* Add initial backend support for SET/SHOW/RESET TIME ZONE.Thomas G. Lockhart1997-10-30
| | | | | Uses TZ environment variable. Needs additional schemes for brain-dead SQL92 time offsets.
* Add routines istrue() and isfalse() to directly evaluate boolean type.Thomas G. Lockhart1997-10-30
|
* Add support for SQL92 delimited identifiers.Thomas G. Lockhart1997-10-30
| | | | | Add support for SQL3 IS TRUE and IS FALSE. Augment support for SQL92 SET TIME ZONE...
* Add support for delimited identifiers. Include new exclusive state "xd".Thomas G. Lockhart1997-10-30
| | | | Remove unused ScanString variable and code.
* Fix up elog messages for consistant usage of quotes around arguments.Thomas G. Lockhart1997-10-30
|
* Fix for international identifiers, from Tatsuo IshiiBruce Momjian1997-10-30
|
* Fix for when POSIX time not defined.Bruce Momjian1997-10-30
|
* Fix for compile warning, from Ernst Molitor.Bruce Momjian1997-10-30
|
* AIX patch from Darren King.Bruce Momjian1997-10-30
|
* Remove strcasecmp for univel.Bruce Momjian1997-10-30
|
* Generate error on large integer.Bruce Momjian1997-10-30
|
* Now we are able to CREATE PROCEDURAL LANGUAGE (Thanks, Jan).Vadim B. Mikheev1997-10-28
|
* Free ascii representations of compared values!Vadim B. Mikheev1997-10-27
|
* Use shared lock when building indicesVadim B. Mikheev1997-10-27
|
* Fix binary cursors broken by MOVE implementation.Vadim B. Mikheev1997-10-27
| | | | (Thanks to Bruce for finding what caused problem).
* Add SQL92 "constants" CURRENT_DATE, CURRENT_TIME, CURRENT_TIMESTAMP,Thomas G. Lockhart1997-10-25
| | | | | | | | | | | | | CURRENT_USER. Add syntax for primary and foreign keys. Change optional syntax in CREATE INDEX to avoid parsing conflict with TIMESTAMP WITH TIME ZONE data type (use USING <class> rather than WITH...). Decouple various categories of data type syntax to allow the most possible non-ambiguous extensions to SQL92 for column names and labels. This should make the parser a bit more understandable, or at least easier to find where and how the data types are handled. Support syntax for IN and EXISTS clauses with subselects. Support SQL92 syntax for IS TRUE/IS FALSE/IS NOT TRUE/IS NOT FALSE.
* Add SQL92 reserved words for primary and foreign keys.Thomas G. Lockhart1997-10-25
| | | | | | Add keywords for national character types. Shorted date/time keyword token names for convenience. Add SQL3 reserved words TRUE and FALSE.
* Change column number constant to reflect change in column nameThomas G. Lockhart1997-10-25
| | | | from "action" to "ev_action".
* Change embedded query to reflect column name change from "action"Thomas G. Lockhart1997-10-25
| | | | to "ev_action".
* Rename "TYPE" parser keyword token from P_TYPE to TYPE_P to conformThomas G. Lockhart1997-10-25
| | | | to changes in parser.
* Shorten routine names to <= 16 characters to fit in pg_proc table.Thomas G. Lockhart1997-10-25
|
* Add conversion routines for oid to and from text.Thomas G. Lockhart1997-10-25
|
* Clean up comments.Thomas G. Lockhart1997-10-25
|
* Add conversions for int2 and int4 to and from text.Thomas G. Lockhart1997-10-25
|
* Fix occasional uninitialized variable fractional secondsThomas G. Lockhart1997-10-25
| | | | | in DecodeTimeOnly(). Only present when seconds are not specified for input.
* Add conversion from datetime to time data type.Thomas G. Lockhart1997-10-25
| | | | | Rename date+time conversion to datetime to ensure less than 16 characters in routine name (required to fit in pg_proc table).
* Modify one last line to complete changes for StrNCpy() macro addition.Thomas G. Lockhart1997-10-25
| | | | Before, char16 was missing last character for output.
* Add debugging statement enabled by CASHDEBUG symbol definition.Thomas G. Lockhart1997-10-25
|
* Check explicitly for valid input strings for both TRUE and FALSE.Thomas G. Lockhart1997-10-25
| | | | | | | Allow true/false, yes/no, 1/0. Throw elog warning if anything else. Allow shorter strings, so "t", "tr", "tru" and "true" match "true". Old behavior accepted anything starting with "t" as TRUE, everything else as FALSE.
* Rename strNcpy to StrNCpy, and change third parameter.Bruce Momjian1997-10-25
|
* Fix alignment of source.Bruce Momjian1997-10-24
|
* Debug stuff added to BlowawayRelationBuffers().Vadim B. Mikheev1997-10-22
|