1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-10 17:42:29 +03:00

Add pg_database_encoding_max_length() function.

This commit is contained in:
Tatsuo Ishii
2001-09-23 10:59:45 +00:00
parent fae50f873f
commit be629abfc8
2 changed files with 13 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
/*
* conversion functions between pg_wchar and multi-byte streams.
* Tatsuo Ishii
* $Id: wchar.c,v 1.21 2001/09/21 15:27:38 tgl Exp $
* $Id: wchar.c,v 1.22 2001/09/23 10:59:45 ishii Exp $
*
* WIN1250 client encoding updated by Pavel Behal
*
@@ -573,4 +573,14 @@ pg_verifymbstr(const unsigned char *mbstr, int len)
}
return NULL;
}
/*
* fetch maximum length of a char encoding for the current database
*/
int
pg_database_encoding_max_length(void)
{
return pg_wchar_table[GetDatabaseEncoding()].maxmblen;
}
#endif