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

Fixed creation of views and external tables.

This commit is contained in:
dimitr 2006-08-29 05:38:52 +00:00
parent 5e7a2a9b77
commit fc790706e7

View File

@ -4841,9 +4841,12 @@ static void check_relation_temp_scope(thread_db* tdbb, Global* gbl,
****************************************************/
Database* dbb = tdbb->tdbb_database;
fb_assert(child_type == rel_persistent ||
child_type == rel_global_temp_preserve ||
child_type == rel_global_temp_delete);
if (child_type != rel_persistent &&
child_type != rel_global_temp_preserve &&
child_type != rel_global_temp_delete)
{
return;
}
jrd_req* request = CMP_find_request(tdbb, drq_l_rel_info2, DYN_REQUESTS);
bool bErr = false;