8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 03:23:04 +01:00

Fixed regression for test "bugs.core_1076" introduced by some cleanup.

User first/middle/last names have nothing to do with SQL identifiers and their length is limited by 32 characters.
This commit is contained in:
dimitr 2009-10-05 14:29:39 +00:00
parent a6f41a5cab
commit 38edeee1ce

View File

@ -48,7 +48,7 @@ const int MAP_DROP_OPER = 9;
const int USER_NAME_LEN = 133;
const int ALT_NAME_LEN = 129;
const int NAME_LEN = MAX_SQL_IDENTIFIER_SIZE;
const int NAME_LEN = 33;
//const int PASS_LEN = MAX_PASSWORD_LENGTH + 1;
const int _SERVER_LEN = 128;
const int DATABASE_LEN = _SERVER_LEN + MAXPATHLEN;