aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* 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.
* Support SQL92 delimited identifiers by checking some attribute namesThomas G. Lockhart1997-10-30
| | | | for mixed-case and surrounding with double quotes.
* 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 java timestamp type from teunis@sigil.computersupportcentre.comBruce Momjian1997-10-30
|
* CREATE PROCEDURAL LANGUAGE mans (Jan).Vadim B. Mikheev1997-10-30
|
* Irix LORDER addition.Bruce Momjian1997-10-30
|
* Fix for netbsd locking, from Henry B. Hotz.Bruce Momjian1997-10-30
|
* Fix for compile warning, from Ernst Molitor.Bruce Momjian1997-10-30
|
* Fix for array handling, from Gerhard HintermayerBruce Momjian1997-10-30
|
* Make configure more automated, from Brook Milligan.Bruce Momjian1997-10-30
|
* Fix for perl from Brook MilliganBruce Momjian1997-10-30
|
* Add script to check regression tests.Bruce Momjian1997-10-30
|
* Rename pg_dump -H option to -h.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
|
* New backend_dir html source.Bruce Momjian1997-10-29
|
* Added support for shlib for BSD44_derived & i386_solaris.Vadim B. Mikheev1997-10-28
|
* Now we are able to CREATE PROCEDURAL LANGUAGE (Thanks, Jan).Vadim B. Mikheev1997-10-28
|
* Rename postgres95 to postgresql.Bruce Momjian1997-10-28
|
* New backend dirs html file.Bruce Momjian1997-10-27
|
* Add new html development tools, and flow chart.Bruce Momjian1997-10-27
|
* c.h:Vadim B. Mikheev1997-10-27
| | | | | | | | | | | | | | | | | #define StrNCpy(dst,src,len) \ (strncpy((dst),(src),(len)),(len > 0) ? *((dst)+(len)-1)='\0' : \ NULL,(void)(dst)) ^^^^^^ - to avoid "value computed is not used" from gcc in ma-a-any places (should to fix thouse places instead, but ... time) config.h.in: /* * TBL_FREE_CMD_MEMORY: free memory allocated for an user query inside * transaction block after this query is done. */ #define TBL_FREE_CMD_MEMORY - this is default now.
* 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).
* Modify to reflect changes in boolean input behavior (rejects bad inputThomas G. Lockhart1997-10-25
| | | | rather than assuming FALSE).
* Remove extraneous row from user_relns table. Don't know where it came from...Thomas G. Lockhart1997-10-25
|
* Have compiler use 486 instruction set. (Should add item in linux FAQ).Thomas G. Lockhart1997-10-25
|
* 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.
* Add conversion routines for int2, int4, and oid to and from text.Thomas G. Lockhart1997-10-25
| | | | | Change a few routine names to ensure <= 16 characters in name to fit correctly into pg_proc.
* 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.
* Reassign cash/float4 arithmetic operator oids to avoid duplicate oids.Thomas G. Lockhart1997-10-25
|
* Add conversion functions for int2, int4, oid to and from text.Thomas G. Lockhart1997-10-25
| | | | Shorten a few routine names to <= 16 characters long to fit in table.
* Rename column to avoid "action" SQL92 reserved word.Thomas G. Lockhart1997-10-25
|
* 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.