2016-05-20 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in 'rdadmin/createdb.cpp' that caused creation
	of a new DB to fail.
This commit is contained in:
Fred Gleason
2016-05-20 15:55:26 -04:00
parent d9023b1430
commit 5d0ee9cd38
2 changed files with 4 additions and 1 deletions

View File

@@ -2384,7 +2384,7 @@ bool CreateDb(QString name,QString pwd)
"CUT_NAME char(12) not null,"+
"NUMBER int not null,"+
"POINT int not null,"+
"CUT_NAME_IDX(CUT_NAME))";
"index CUT_NAME_IDX(CUT_NAME))";
if(!RunQuery(sql)) {
return false;
}