Skip to content

Commit

Permalink
2016-05-20 Fred Gleason <[email protected]>
Browse files Browse the repository at this point in the history
	* Fixed a bug in 'rdadmin/createdb.cpp' that caused creation
	of a new DB to fail.
  • Loading branch information
ElvishArtisan committed May 20, 2016
1 parent d9023b1 commit 5d0ee9c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -15147,3 +15147,6 @@
'rdcatchd/local_macros.cpp'.
* Added a deck event indicator to RDCatch's deck monitor in
'rdcatch/deckmon.cpp' and 'rdcatch/deckmon.h'.
2016-05-20 Fred Gleason <[email protected]>
* Fixed a bug in 'rdadmin/createdb.cpp' that caused creation
of a new DB to fail.
2 changes: 1 addition & 1 deletion rdadmin/createdb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 5d0ee9c

Please sign in to comment.