Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
3c6cd8a1
Commit
3c6cd8a1
authored
Nov 22, 2005
by
Teodor Sigaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes motivated by snake and spoonbill pgbuildfarm members
parent
725ace44
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
13 deletions
+18
-13
contrib/tsearch2/ts_locale.c
contrib/tsearch2/ts_locale.c
+13
-8
contrib/tsearch2/ts_locale.h
contrib/tsearch2/ts_locale.h
+2
-2
contrib/tsearch2/wordparser/parser.c
contrib/tsearch2/wordparser/parser.c
+3
-3
No files found.
contrib/tsearch2/ts_locale.c
View file @
3c6cd8a1
...
...
@@ -8,23 +8,29 @@
#if defined(TS_USE_WIDE) && defined(WIN32)
size_t
wchar2char
(
c
onst
c
har
*
to
,
const
wchar_t
*
from
,
size_t
len
)
{
wchar2char
(
char
*
to
,
const
wchar_t
*
from
,
size_t
len
)
{
if
(
GetDatabaseEncoding
()
==
PG_UTF8
)
{
int
r
;
int
r
,
nbytes
;
if
(
len
==
0
)
return
0
;
/* in any case, *to should be allocated with enough space */
nbytes
=
WideCharToMultiByte
(
CP_UTF8
,
0
,
from
,
len
,
NULL
,
0
,
NULL
,
NULL
);
if
(
nbytes
==
0
)
ereport
(
ERROR
,
(
errcode
(
ERRCODE_CHARACTER_NOT_IN_REPERTOIRE
),
errmsg
(
"UTF-16 to UTF-8 translation failed: %lu"
,
GetLastError
())));
r
=
WideCharToMultiByte
(
CP_UTF8
,
0
,
from
,
len
,
to
,
nbytes
,
NULL
,
NULL
);
if
(
r
==
0
)
ereport
(
ERROR
,
(
errcode
(
ERRCODE_CHARACTER_NOT_IN_REPERTOIRE
),
errmsg
(
"UTF-16 to UTF-8 translation failed: %lu"
,
GetLastError
())));
return
r
;
}
...
...
@@ -32,15 +38,14 @@ wchar2char( const char *to, const wchar_t *from, size_t len ) {
}
size_t
char2wchar
(
const
wchar_t
*
to
,
const
char
*
from
,
size_t
len
)
{
char2wchar
(
wchar_t
*
to
,
const
char
*
from
,
size_t
len
)
{
if
(
GetDatabaseEncoding
()
==
PG_UTF8
)
{
int
r
;
if
(
len
==
0
)
return
0
;
r
=
MultiByteToWideChar
(
CP_UTF8
,
0
,
from
,
len
,
to
,
len
);
r
=
MultiByteToWideChar
(
CP_UTF8
,
0
,
from
,
len
,
to
,
len
);
if
(
!
r
)
{
pg_verifymbstr
(
from
,
len
,
false
);
...
...
@@ -50,7 +55,7 @@ char2wchar( const wchar_t *to, const char *from, size_t len ) {
errhint
(
"The server's LC_CTYPE locale is probably incompatible with the database encoding."
)));
}
Assert
(
r
<=
nbytes
);
Assert
(
r
<=
len
);
return
r
;
}
...
...
contrib/tsearch2/ts_locale.h
View file @
3c6cd8a1
...
...
@@ -22,8 +22,8 @@
#ifdef WIN32
size_t
wchar2char
(
c
onst
c
har
*
to
,
const
wchar_t
*
from
,
size_t
len
);
size_t
char2wchar
(
const
wchar_t
*
to
,
const
char
*
from
,
size_t
len
);
size_t
wchar2char
(
char
*
to
,
const
wchar_t
*
from
,
size_t
len
);
size_t
char2wchar
(
wchar_t
*
to
,
const
char
*
from
,
size_t
len
);
#else
/* WIN32 */
...
...
contrib/tsearch2/wordparser/parser.c
View file @
3c6cd8a1
...
...
@@ -79,7 +79,7 @@ TParserClose( TParser* prs ) {
static int \
p_is##type(TParser *prs) { \
Assert( prs->state ); \
return ( ( prs->usewide ) ? isw##type( (wint_t)*( prs->wstr + prs->state->poschar ) ) :
\
return ( ( prs->usewide ) ? isw##type( (wint_t)*( prs->wstr + prs->state->poschar ) ) :
\
is##type( (unsigned char)*( prs->str + prs->state->posbyte ) ) ); \
} \
\
...
...
@@ -104,7 +104,7 @@ p_iseq(TParser *prs, char c) {
static int \
p_is##type(TParser *prs) { \
Assert( prs->state ); \
return is##type( (unsigned char)*( prs->str + prs->state->posbyte ) )
);
\
return is##type( (unsigned char)*( prs->str + prs->state->posbyte ) )
;
\
} \
\
static int \
...
...
@@ -116,7 +116,7 @@ p_isnot##type(TParser *prs) { \
static
int
p_iseq
(
TParser
*
prs
,
char
c
)
{
Assert
(
prs
->
state
);
return
(
*
(
prs
->
str
+
prs
->
state
->
posbyte
)
==
c
)
)
?
1
:
0
;
return
(
*
(
prs
->
str
+
prs
->
state
->
posbyte
)
==
c
)
?
1
:
0
;
}
#endif
/* TS_USE_WIDE */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment