8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-02-02 10:40:38 +01:00

Fixed CORE-5721: Information items isc_info_length and fb_info_crypt_state have same code

This commit is contained in:
AlexPeshkoff 2018-01-22 17:07:30 +03:00
parent 3ee317e826
commit dda1fc6055

View File

@ -140,10 +140,8 @@ enum db_info_types
fb_info_pages_used = 124,
fb_info_pages_free = 125,
fb_info_crypt_state = 126,
fb_info_statement_timeout_db = 127,
fb_info_statement_timeout_att = 128,
// codes 126 and 127 are used for special purporses
// do not use them here
fb_info_ses_idle_timeout_db = 129,
fb_info_ses_idle_timeout_att = 130,
@ -152,6 +150,10 @@ enum db_info_types
fb_info_conn_flags = 132,
fb_info_crypt_key = 133,
fb_info_crypt_state = 134,
fb_info_statement_timeout_db = 135,
fb_info_statement_timeout_att = 136,
isc_info_db_last_value /* Leave this LAST! */
};