diff options
author | Bruce Momjian | 1998-06-16 07:29:54 +0000 |
---|---|---|
committer | Bruce Momjian | 1998-06-16 07:29:54 +0000 |
commit | cb7cbc16fa4b5933fb5d63052568e3ed6859857b (patch) | |
tree | bed17594c4880549288373de4d400512cbe2f82d /src/backend/regex/regcomp.c | |
parent | 0d8e7f6381291b85ad6264365e01143357d70a75 (diff) |
Hi, here are the patches to enhance existing MB handling. This time
I have implemented a framework of encoding translation between the
backend and the frontend. Also I have added a new variable setting
command:
SET CLIENT_ENCODING TO 'encoding';
Other features include:
Latin1 support more 8 bit cleaness
See doc/README.mb for more details. Note that the pacthes are
against May 30 snapshot.
Tatsuo Ishii
Diffstat (limited to 'src/backend/regex/regcomp.c')
-rw-r--r-- | src/backend/regex/regcomp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/regex/regcomp.c b/src/backend/regex/regcomp.c index 01b95427c62..4eb71eb525e 100644 --- a/src/backend/regex/regcomp.c +++ b/src/backend/regex/regcomp.c @@ -1344,7 +1344,7 @@ cset *cs; for (i = 0; i < css; i++) if (CHIN(cs, i)) - return ((char) i); + return (i); assert(never); return (0); /* arbitrary */ } |