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

Improvement CORE-4898 - Speed up function creation and loading when there are many functions in the database.

This commit is contained in:
asfernandes 2015-08-03 01:41:34 +00:00
parent c272477a97
commit 9446f81cdb

View File

@ -282,6 +282,10 @@ static const struct ini_idx_t indices[] =
// define index RDB$INDEX_52 for RDB$AUTH_MAPPING RDB$MAP_NAME;
INDEX(52, rel_auth_mapping, 0, 1)
SEGMENT(f_map_name, idx_metadata) // mapping name
}},
// define index RDB$INDEX_53 for RDB$FUNCTIONS unique RDB$FUNCTION_ID;
INDEX(53, rel_funs, idx_unique, 1)
SEGMENT(f_fun_id, idx_numeric) // function id
}}
};