Msvc doesn't know UINT16_MAX, replace with PG_UINT16_MAX.

UINT16_MAX usage is originating from commit 212e6f34d5.

Per buildfarm animal currawong.
This commit is contained in:
Andres Freund 2017-10-04 10:01:02 -07:00
parent 15334ad19a
commit 9eafa2b5b0
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ extern const int fmgr_nbuiltins; /* number of entries in table */
* Mapping from a builtin function's oid to the index in the fmgr_builtins
* array.
*/
#define InvalidOidBuiltinMapping UINT16_MAX
#define InvalidOidBuiltinMapping PG_UINT16_MAX
extern const uint16 fmgr_builtin_oid_index[FirstBootstrapObjectId];
#endif /* FMGRTAB_H */