From bd5bd2246b1694e10b6604d5638a94809b9f4076 Mon Sep 17 00:00:00 2001 From: Fred Gleason Date: Fri, 6 Jul 2018 11:39:55 -0400 Subject: [PATCH] 2018-07-07 Fred Gleason * Fixed a bug in rddbmgr(8) that caused the 'EVENT_LINES' table to be created with the incorrect engine type when using '--modify'. --- ChangeLog | 4 ++++ utils/rddbmgr/updateschema.cpp | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9d8e4f75..96ee5e5a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -17098,3 +17098,7 @@ incorrect engine type when using '--modify'. * Updated the 'init_template_host.py' script to work with schema version 287. +2018-07-07 Fred Gleason + * Fixed a bug in rddbmgr(8) that caused the 'EVENT_LINES' + table to be created with the incorrect engine type when using + '--modify'. diff --git a/utils/rddbmgr/updateschema.cpp b/utils/rddbmgr/updateschema.cpp index c7852a6d..0dcd3732 100644 --- a/utils/rddbmgr/updateschema.cpp +++ b/utils/rddbmgr/updateschema.cpp @@ -7489,7 +7489,8 @@ bool MainObject::UpdateSchema(int cur_schema,int set_schema,QString *err_msg) co "CART_NUMBER int unsigned,"+ "TRANS_TYPE int not null,"+ "MARKER_COMMENT char(255),"+ - "unique index EVENT_NAME_TYPE_COUNT_IDX (EVENT_NAME,TYPE,COUNT))"; + "unique index EVENT_NAME_TYPE_COUNT_IDX (EVENT_NAME,TYPE,COUNT))"+ + db_table_create_postfix; if(!RDSqlQuery::apply(sql,err_msg)) { return false; }