other dbs seem to support a table we don't
Bug #707846 reported by
Monty Taylor
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Drizzle |
Confirmed
|
Wishlist
|
Unassigned |
Bug Description
SQLAlchemy creates this for everyone else:
CREATE TABLE test2 (
id INTEGER NOT NULL,
id2 INTEGER NOT NULL AUTO_INCREMENT,
data VARCHAR(50),
PRIMARY KEY (id, id2),
FOREIGN KEY(id) REFERENCES test (id)
);
BUT - for us we don't support it because of the auto_inc. Should we?
Changed in drizzle: | |
importance: | Undecided → Wishlist |
status: | New → Confirmed |
milestone: | none → future |
To post a comment you must log in.
We can remove the requirement that AUTO_INCREMENT generate an index, it is not required.