mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
Add comment for multi-byte computation.
This commit is contained in:
parent
72c53ac3a7
commit
954108f92d
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/backend/parser/parse_expr.c,v 1.182 2005/05/24 15:45:34 ishii Exp $
|
* $PostgreSQL: pgsql/src/backend/parser/parse_expr.c,v 1.183 2005/06/04 20:56:13 momjian Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -1556,6 +1556,7 @@ exprTypmod(Node *expr)
|
|||||||
{
|
{
|
||||||
int32 len = VARSIZE(DatumGetPointer(con->constvalue)) - VARHDRSZ;
|
int32 len = VARSIZE(DatumGetPointer(con->constvalue)) - VARHDRSZ;
|
||||||
|
|
||||||
|
/* if multi-byte, take len and find # characters */
|
||||||
if (pg_database_encoding_max_length() > 1)
|
if (pg_database_encoding_max_length() > 1)
|
||||||
len = pg_mbstrlen_with_len(VARDATA(DatumGetPointer(con->constvalue)), len);
|
len = pg_mbstrlen_with_len(VARDATA(DatumGetPointer(con->constvalue)), len);
|
||||||
return len + VARHDRSZ;
|
return len + VARHDRSZ;
|
||||||
|
Loading…
Reference in New Issue
Block a user