From 9444a471368b889dc64a240340c41d2121dae341 Mon Sep 17 00:00:00 2001 From: prabatuty Date: Fri, 2 Apr 2010 15:24:14 +0000 Subject: [PATCH] auto increment key index changed from hash to tree --- src/sql/DdlStatement.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sql/DdlStatement.cxx b/src/sql/DdlStatement.cxx index 218fa812..51fb3e19 100644 --- a/src/sql/DdlStatement.cxx +++ b/src/sql/DdlStatement.cxx @@ -73,7 +73,7 @@ DbRetVal CreateTblStatement::execute(int &rowsAffected) name = (FieldInfo*)iter.nextElement(); idxInfo->list.append(name->fldName); } - idxInfo->indType = hashIndex; + idxInfo->indType = treeIndex; idxInfo->isPrimary = true; idxInfo->isUnique = true; char indName[IDENTIFIER_LENGTH]; -- 2.11.4.GIT