- Notifications
You must be signed in to change notification settings - Fork5
Commitcb36e74
committed
In src/include/mb/pg_wchar.h we have:
#define PG_ENCODING_BE_LAST PG_ISO_8859_8#define PG_ENCODING_FE_LAST PG_WIN1256but the last client encoding in the enum list is actually PG_GB18030 andit seems that#define PG_ENCODING_IS_CLIEN_ONLY(_enc) \ (((_enc) > PG_ENCODING_BE_LAST && (_enc) <= PG_ENCODING_FE_LAST)can never be true.I think the define should read#define PG_ENCODING_FE_LAST PG_GB18030On the other hand, perhaps no-one cares, becausePG_ENCODING_IS_CLIEN_ONLY is never used.--Oliver Elphick Oliver.Elphick@lfix.co.uk1 parent1c5e716 commitcb36e74
1 file changed
+2
-2
lines changedLines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
| 1 | + | |
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
| |||
190 | 190 |
| |
191 | 191 |
| |
192 | 192 |
| |
193 |
| - | |
| 193 | + | |
194 | 194 |
| |
195 | 195 |
| |
196 | 196 |
| |
|
0 commit comments
Comments
(0)