Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Add support for SQL92 delimited identifiers. | Thomas G. Lockhart | 1997-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. Lockhart | 1997-10-30 | |
| | | | | Remove unused ScanString variable and code. | |||
* | Fix up elog messages for consistant usage of quotes around arguments. | Thomas G. Lockhart | 1997-10-30 | |
| | ||||
* | Fix for international identifiers, from Tatsuo Ishii | Bruce Momjian | 1997-10-30 | |
| | ||||
* | Fix for when POSIX time not defined. | Bruce Momjian | 1997-10-30 | |
| | ||||
* | Fix for java timestamp type from teunis@sigil.computersupportcentre.com | Bruce Momjian | 1997-10-30 | |
| | ||||
* | CREATE PROCEDURAL LANGUAGE mans (Jan). | Vadim B. Mikheev | 1997-10-30 | |
| | ||||
* | Irix LORDER addition. | Bruce Momjian | 1997-10-30 | |
| | ||||
* | Fix for netbsd locking, from Henry B. Hotz. | Bruce Momjian | 1997-10-30 | |
| | ||||
* | Fix for compile warning, from Ernst Molitor. | Bruce Momjian | 1997-10-30 | |
| | ||||
* | Fix for array handling, from Gerhard Hintermayer | Bruce Momjian | 1997-10-30 | |
| | ||||
* | Make configure more automated, from Brook Milligan. | Bruce Momjian | 1997-10-30 | |
| | ||||
* | Fix for perl from Brook Milligan | Bruce Momjian | 1997-10-30 | |
| | ||||
* | Add script to check regression tests. | Bruce Momjian | 1997-10-30 | |
| | ||||
* | Rename pg_dump -H option to -h. | Bruce Momjian | 1997-10-30 | |
| | ||||
* | AIX patch from Darren King. | Bruce Momjian | 1997-10-30 | |
| | ||||
* | Remove strcasecmp for univel. | Bruce Momjian | 1997-10-30 | |
| | ||||
* | Generate error on large integer. | Bruce Momjian | 1997-10-30 | |
| | ||||
* | New backend_dir html source. | Bruce Momjian | 1997-10-29 | |
| | ||||
* | Added support for shlib for BSD44_derived & i386_solaris. | Vadim B. Mikheev | 1997-10-28 | |
| | ||||
* | Now we are able to CREATE PROCEDURAL LANGUAGE (Thanks, Jan). | Vadim B. Mikheev | 1997-10-28 | |
| | ||||
* | Rename postgres95 to postgresql. | Bruce Momjian | 1997-10-28 | |
| | ||||
* | New backend dirs html file. | Bruce Momjian | 1997-10-27 | |
| | ||||
* | Add new html development tools, and flow chart. | Bruce Momjian | 1997-10-27 | |
| | ||||
* | c.h: | Vadim B. Mikheev | 1997-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. Mikheev | 1997-10-27 | |
| | ||||
* | Use shared lock when building indices | Vadim B. Mikheev | 1997-10-27 | |
| | ||||
* | Fix binary cursors broken by MOVE implementation. | Vadim B. Mikheev | 1997-10-27 | |
| | | | | (Thanks to Bruce for finding what caused problem). | |||
* | Modify to reflect changes in boolean input behavior (rejects bad input | Thomas G. Lockhart | 1997-10-25 | |
| | | | | rather than assuming FALSE). | |||
* | Remove extraneous row from user_relns table. Don't know where it came from... | Thomas G. Lockhart | 1997-10-25 | |
| | ||||
* | Have compiler use 486 instruction set. (Should add item in linux FAQ). | Thomas G. Lockhart | 1997-10-25 | |
| | ||||
* | Add SQL92 "constants" CURRENT_DATE, CURRENT_TIME, CURRENT_TIMESTAMP, | Thomas G. Lockhart | 1997-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. Lockhart | 1997-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. Lockhart | 1997-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 name | Thomas G. Lockhart | 1997-10-25 | |
| | | | | from "action" to "ev_action". | |||
* | Change embedded query to reflect column name change from "action" | Thomas G. Lockhart | 1997-10-25 | |
| | | | | to "ev_action". | |||
* | Rename "TYPE" parser keyword token from P_TYPE to TYPE_P to conform | Thomas G. Lockhart | 1997-10-25 | |
| | | | | to changes in parser. | |||
* | Reassign cash/float4 arithmetic operator oids to avoid duplicate oids. | Thomas G. Lockhart | 1997-10-25 | |
| | ||||
* | Add conversion functions for int2, int4, oid to and from text. | Thomas G. Lockhart | 1997-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. Lockhart | 1997-10-25 | |
| | ||||
* | Shorten routine names to <= 16 characters to fit in pg_proc table. | Thomas G. Lockhart | 1997-10-25 | |
| | ||||
* | Add conversion routines for oid to and from text. | Thomas G. Lockhart | 1997-10-25 | |
| | ||||
* | Clean up comments. | Thomas G. Lockhart | 1997-10-25 | |
| | ||||
* | Add conversions for int2 and int4 to and from text. | Thomas G. Lockhart | 1997-10-25 | |
| | ||||
* | Fix occasional uninitialized variable fractional seconds | Thomas G. Lockhart | 1997-10-25 | |
| | | | | | in DecodeTimeOnly(). Only present when seconds are not specified for input. | |||
* | Add conversion from datetime to time data type. | Thomas G. Lockhart | 1997-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. Lockhart | 1997-10-25 | |
| | | | | Before, char16 was missing last character for output. | |||
* | Add debugging statement enabled by CASHDEBUG symbol definition. | Thomas G. Lockhart | 1997-10-25 | |
| | ||||
* | Check explicitly for valid input strings for both TRUE and FALSE. | Thomas G. Lockhart | 1997-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. | |||
* | StrNCpy cleanup. | Bruce Momjian | 1997-10-25 | |
| |