summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1997-11-03Add paging for \d, and fix \i.Bruce Momjian
1997-11-02Portability fix for pg_passwd.Bruce Momjian
1997-11-02Good Bye, Time Travel!Vadim B. Mikheev
1997-11-01Fix acl error, and remove duplicate pqtrace.Bruce Momjian
1997-10-31Indexes for LIKE and ~, !~ operations.Bruce Momjian
1997-10-30No more warnings on macros, thanks VAdim.Bruce Momjian
1997-10-30Remember release.txt change.Bruce Momjian
1997-10-30Update version to 6.3. dump/reload for 6.1 version users.Bruce Momjian
1997-10-30We have multi-column indexes, so update manual.Bruce Momjian
1997-10-30FIx for SCO compiles.Bruce Momjian
1997-10-30Fix for java to allow password, european dates,from Peter T MountBruce Momjian
1997-10-30FIx for libptcl make, from Tatsuo Ishii.Bruce Momjian
1997-10-30Patch for tcl library crash, from Jan Wieck.Bruce Momjian
1997-10-30Remove duplocate lock_timeout value.Bruce Momjian
1997-10-30Update for modified quoting style in some error messages.Thomas G. Lockhart
1997-10-30Add initial backend support for SET/SHOW/RESET TIME ZONE.Thomas G. Lockhart
Uses TZ environment variable. Needs additional schemes for brain-dead SQL92 time offsets.
1997-10-30Support SQL92 delimited identifiers by checking some attribute namesThomas G. Lockhart
for mixed-case and surrounding with double quotes.
1997-10-30Add routines istrue() and isfalse() to directly evaluate boolean type.Thomas G. Lockhart
1997-10-30Add support for SQL92 delimited identifiers.Thomas G. Lockhart
Add support for SQL3 IS TRUE and IS FALSE. Augment support for SQL92 SET TIME ZONE...
1997-10-30Add support for delimited identifiers. Include new exclusive state "xd".Thomas G. Lockhart
Remove unused ScanString variable and code.
1997-10-30Fix up elog messages for consistant usage of quotes around arguments.Thomas G. Lockhart
1997-10-30Fix for international identifiers, from Tatsuo IshiiBruce Momjian
1997-10-30Fix for when POSIX time not defined.Bruce Momjian
1997-10-30Fix for java timestamp type from teunis@sigil.computersupportcentre.comBruce Momjian
1997-10-30CREATE PROCEDURAL LANGUAGE mans (Jan).Vadim B. Mikheev
1997-10-30Irix LORDER addition.Bruce Momjian
1997-10-30Fix for netbsd locking, from Henry B. Hotz.Bruce Momjian
1997-10-30Fix for compile warning, from Ernst Molitor.Bruce Momjian
1997-10-30Fix for array handling, from Gerhard HintermayerBruce Momjian
1997-10-30Make configure more automated, from Brook Milligan.Bruce Momjian
1997-10-30Fix for perl from Brook MilliganBruce Momjian
1997-10-30Add script to check regression tests.Bruce Momjian
1997-10-30Rename pg_dump -H option to -h.Bruce Momjian
1997-10-30AIX patch from Darren King.Bruce Momjian
1997-10-30Remove strcasecmp for univel.Bruce Momjian
1997-10-30Generate error on large integer.Bruce Momjian
1997-10-29New backend_dir html source.Bruce Momjian
1997-10-28Added support for shlib for BSD44_derived & i386_solaris.Vadim B. Mikheev
1997-10-28Now we are able to CREATE PROCEDURAL LANGUAGE (Thanks, Jan).Vadim B. Mikheev
1997-10-28Rename postgres95 to postgresql.Bruce Momjian
1997-10-27New backend dirs html file.Bruce Momjian
1997-10-27Add new html development tools, and flow chart.Bruce Momjian
1997-10-27c.h:Vadim B. Mikheev
#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.
1997-10-27Free ascii representations of compared values!Vadim B. Mikheev
1997-10-27Use shared lock when building indicesVadim B. Mikheev
1997-10-27Fix binary cursors broken by MOVE implementation.Vadim B. Mikheev
(Thanks to Bruce for finding what caused problem).
1997-10-25Modify to reflect changes in boolean input behavior (rejects bad inputThomas G. Lockhart
rather than assuming FALSE).
1997-10-25Remove extraneous row from user_relns table. Don't know where it came from...Thomas G. Lockhart
1997-10-25Have compiler use 486 instruction set. (Should add item in linux FAQ).Thomas G. Lockhart
1997-10-25Add SQL92 "constants" CURRENT_DATE, CURRENT_TIME, CURRENT_TIMESTAMP,Thomas G. Lockhart
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.