mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-10 16:43:35 +02:00
2021-09-11 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rddbmgr(8) in '--check' mode that caused alteration of a table's engine type to fail. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -22401,3 +22401,6 @@
|
|||||||
* Fixed a bug in rddbmgr(8) that generated a SQL error when checking
|
* Fixed a bug in rddbmgr(8) that generated a SQL error when checking
|
||||||
for orphaned scheduler code rules when no Clocks existed in the
|
for orphaned scheduler code rules when no Clocks existed in the
|
||||||
database.
|
database.
|
||||||
|
2021-09-11 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Fixed a regression in rddbmgr(8) in '--check' mode that caused
|
||||||
|
alteration of a table's engine type to fail.
|
||||||
|
@@ -175,7 +175,10 @@ void MainObject::CheckTableAttributes()
|
|||||||
fflush(NULL);
|
fflush(NULL);
|
||||||
if(UserResponse()) {
|
if(UserResponse()) {
|
||||||
sql=QString("alter table `")+q->value(0).toString()+"` "+
|
sql=QString("alter table `")+q->value(0).toString()+"` "+
|
||||||
"`ENGINE`="+db_mysql_engine;
|
"ENGINE="+db_mysql_engine;
|
||||||
|
printf("*****************\n");
|
||||||
|
printf("SQL: %s\n",sql.toUtf8().constData());
|
||||||
|
printf("*****************\n");
|
||||||
RDSqlQuery::apply(sql);
|
RDSqlQuery::apply(sql);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user