internal Key(FieldType type, int oid) { this.type = type; ival = oid; this.inclusion = 1; }
internal Key(FieldType type, bool inclusive) { this.type = type; this.inclusion = inclusive ? 1 : 0; }