Remove handling of crashed tables - there is no difference to normal tables in the way we handle them.

This commit is contained in:
Ansgar Becker
2009-12-19 21:25:59 +00:00
parent 62764fa5e3
commit 7272ba3bc3
6 changed files with 16 additions and 25 deletions

View File

@ -9,7 +9,7 @@ uses
type
{ TDBObjectList and friends }
TListNodeType = (lntNone, lntDb, lntTable, lntCrashedTable, lntView, lntFunction, lntProcedure, lntTrigger, lntColumn);
TListNodeType = (lntNone, lntDb, lntTable, lntView, lntFunction, lntProcedure, lntTrigger, lntColumn);
TListNodeTypes = Set of TListNodeType;
TDBObject = class
Name, Database, Engine, Comment, RowFormat, CreateOptions, Collation, ObjType: WideString;