From fc951918756cf8b25b612ac503b58ea318ef5d7a Mon Sep 17 00:00:00 2001 From: Adriano dos Santos Fernandes Date: Mon, 13 Jun 2016 16:02:52 +0000 Subject: [PATCH] Decrease the length to 63 to avoid BLR problems (CORE-749) - per Dmitry comment in fbdevel. --- src/jrd/constants.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jrd/constants.h b/src/jrd/constants.h index af18e70d1c..cf9476a8b5 100644 --- a/src/jrd/constants.h +++ b/src/jrd/constants.h @@ -57,7 +57,7 @@ const ULONG MAX_STR_SIZE = 65535; // Bytes // Metadata constants -const unsigned METADATA_IDENTIFIER_CHAR_LEN = 64; +const unsigned METADATA_IDENTIFIER_CHAR_LEN = 63; const unsigned METADATA_BYTES_PER_CHAR = 4; // Misc constant values