Patches for LOCALTIME and regexp, feature list - Mailing list pgsql-hackers

From Thomas Lockhart
Subject Patches for LOCALTIME and regexp, feature list
Date
Msg-id 3D0ACD94.4262A867@fourpalms.org
Whole thread Raw
List pgsql-hackers
I've just committed changes to include an SQL99 feature list as an
appendix in the User's Guide. While preparing that I noticed a feature
or two which would be trivial to implement, so we now have LOCALTIME and
LOCALTIMESTAMP function calls per spec (afaict; the spec is very vague
on the behaviors).

I've also removed the ODBC-compatible parentheses on CURRENT_TIMESTAMP
etc and made sure that the ODBC driver handles the case correctly.

More details from the CVS logs are below...
                    - Thomas

Add LOCALTIME and LOCALTIMESTAMP functions per SQL99 standard.
Remove ODBC-compatible empty parentheses from calls to SQL99 functionsfor which these parentheses do not match the
standard.
Update the ODBC driver to ensure compatibility with the ODBC standardfor these functions (e.g. CURRENT_TIMESTAMP,
CURRENT_USER,etc).
 
Include a new appendix in the User's Guide which lists the labeled
featuresfor SQL99 (the labeled features replaced the "basic", "intermediate",and "advanced" categories from SQL92).
features.sgmldoes not yet splitthis list into "supported" and "unsupported" lists.
 
Search the existing regular expression cache as a ring buffer.
Will optimize the case for repeated calls for the same expression,which seems to be the most common case. Formerly,
alwayssearchedfrom the first entry.
 
May want to look at the least-recently-used algorithm to make sure itis identifying the right slots to reclaim. Seems
sillyto do math whenit seems that we could simply use an incrementing counter...
 


pgsql-hackers by date:

Previous
From: Oliver Elphick
Date:
Subject: Re: FEATURE REQUEST - More dynamic date type?
Next
From: Bruce Momjian
Date:
Subject: Re: Queries using rules show no rows modified?