postgresql/src/include
Bruce Momjian 75a64eeb4b I made the patch that implements regexp_replace again.
The specification of this function is as follows.

regexp_replace(source text, pattern text, replacement text, [flags
text])
returns text

Replace string that matches to regular expression in source text to
replacement text.

 - pattern is regular expression pattern.
 - replacement is replace string that can use '\1'-'\9', and '\&'.
    '\1'-'\9': back reference to the n'th subexpression.
    '\&'     : entire matched string.
 - flags can use the following values:
    g: global (replace all)
    i: ignore case
    When the flags is not specified, case sensitive, replace the first
    instance only.

Atsushi Ogawa
2005-07-10 04:54:33 +00:00
..
access Add pg_column_size() to return storage size of a column, including 2005-07-06 19:02:54 +00:00
bootstrap Tag appropriate files for rc3 2004-12-31 22:04:05 +00:00
catalog I made the patch that implements regexp_replace again. 2005-07-10 04:54:33 +00:00
commands Remove some dead code for handling XLOG_DBASE_CREATE_OLD and 2005-07-08 04:12:27 +00:00
executor Revise nodeMergejoin in light of example provided by Guillaume Smet. 2005-05-13 21:20:16 +00:00
lib Tag appropriate files for rc3 2004-12-31 22:04:05 +00:00
libpq Replace pg_shadow and pg_group by new role-capable catalogs pg_authid 2005-06-28 05:09:14 +00:00
mb Support 3 and 4-byte unicode characters. 2005-06-15 00:15:08 +00:00
nodes Teach planner about some cases where a restriction clause can be 2005-07-02 23:00:42 +00:00
optimizer Teach planner about some cases where a restriction clause can be 2005-07-02 23:00:42 +00:00
parser Replace the parser's namespace tree (which formerly had the same 2005-06-05 00:38:11 +00:00
port Add fsync() define for Win32 to cover cases other than wal_sync_method 2005-06-16 17:53:54 +00:00
postmaster Improve the checkpoint signaling mechanism so that the bgwriter can tell 2005-06-30 00:00:52 +00:00
regex I made the patch that implements regexp_replace again. 2005-07-10 04:54:33 +00:00
rewrite Change expandRTE() and ResolveNew() back to taking just the single 2005-06-04 19:19:42 +00:00
storage Bring syntax of role-related commands into SQL compliance. To avoid 2005-06-28 19:51:26 +00:00
tcop Fix the mechanism for reporting the original table OID and column number 2005-06-22 17:45:46 +00:00
utils I made the patch that implements regexp_replace again. 2005-07-10 04:54:33 +00:00
Makefile Use 'cp' and 'chmod' in place of 'install' to install header files. 2005-03-25 23:22:54 +00:00
c.h Add E'' to internally created SQL strings that contain backslashes. 2005-07-02 17:01:59 +00:00
fmgr.h Avoid bare 'struct Node;' declaration --- provokes annoying warnings 2005-06-09 18:44:05 +00:00
funcapi.h Document get_call_result_type() and friends; mark TypeGetTupleDesc() 2005-05-30 23:09:07 +00:00
getaddrinfo.h Some more missed copyright notices. Many of these look like they 2005-01-01 20:44:34 +00:00
getopt_long.h Some more missed copyright notices. Many of these look like they 2005-01-01 20:44:34 +00:00
miscadmin.h Arrange for the postmaster (and standalone backends, initdb, etc) to 2005-07-04 04:51:52 +00:00
pg_config.h.in Update to autoconf 2.59 as well as updates of related scripts 2005-07-01 18:17:31 +00:00
pg_config.h.win32 Win32 8.1 stamp. 2005-01-18 14:39:46 +00:00
pg_config_manual.h Officially decouple FUNC_MAX_ARGS from INDEX_MAX_KEYS, and set the 2005-03-29 03:01:32 +00:00
pgstat.h Clean up the rather historically encumbered interface to now() and 2005-06-29 22:51:57 +00:00
pgtime.h This patch makes it possible to use the full set of timezones when doing 2005-06-15 00:34:11 +00:00
port.h Complete zic patch backout by removing NO_PGPORT workaround. 2005-07-06 21:40:09 +00:00
postgres.h First phase of project to use fixed OIDs for all system catalogs and 2005-04-14 01:38:22 +00:00
postgres_ext.h Pgindent run for 8.0. 2004-08-29 05:07:03 +00:00
postgres_fe.h Tag appropriate files for rc3 2004-12-31 22:04:05 +00:00
rusagestub.h Tag appropriate files for rc3 2004-12-31 22:04:05 +00:00
strdup.h Fix an obsolete file path mentioned in a comment. 2004-01-25 22:19:42 +00:00