From f42290bd6c53b18c663c0c5ed848fdf9a68c1c5c Mon Sep 17 00:00:00 2001 From: dsandersoremutah Date: Wed, 31 May 2006 19:33:19 +0000 Subject: [PATCH] Added code to create block chain table LFH. git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@491 0109f412-320b-0410-ab79-c3e0c5ffbbe6 --- sql/src/fdict.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/sql/src/fdict.cpp b/sql/src/fdict.cpp index 95bcb9b..cb7994e 100644 --- a/sql/src/fdict.cpp +++ b/sql/src/fdict.cpp @@ -3326,6 +3326,11 @@ RCODE F_Db::dictCreate( void) { goto Exit; } + if (RC_BAD(rc = m_pDatabase->lFileCreate( this, &TempLFile, + SFLM_TBLNUM_BLOCK_CHAINS, SFLM_LF_TABLE, FALSE, TRUE, 0))) + { + goto Exit; + } // Create the dictionary indexes @@ -3375,8 +3380,6 @@ RCODE F_Db::dictCreate( void) goto Exit; } -//visit - create maintenance tables and indexes - // Create a new dictionary we can work with. if (RC_BAD( rc = createNewDict()))