public SingleTableQuery(int qId, List<Attribute> qProjectedAttrs, List<Table> qTables, Attribute qSelectedAttribute, String qSelectedAttributeValue, double qPercentSelection, Table qTable, int qConfig = 0) : base(qId, qProjectedAttrs, qTables, qSelectedAttribute, qSelectedAttributeValue, qPercentSelection, qConfig) { this.queryTable = qTable; }
public Attribute(string attName, int attSize, Table attTable = null) { attributeName = attName; attributeSize = attSize; attributeTable = attTable; }