On Jun 12, 2017 5:43 PM, "Richard Hipp" <[email protected]> wrote:
On 6/13/17, Scott Robison <[email protected]> wrote: > > Is it fair to say that the rowid aliasing behavior does not require > (by design) the incantation "INTEGER PRIMARY KEY" (all three words in > that order as the "type") as long as the type is INTEGER and the > constraint PRIMARY KEY appears somewhere in the column's constraint > list? See https://www.sqlite.org/lang_createtable.html#rowid CREATE TABLE t(x INTEGER PRIMARY KEY DESC, y, z); Columns x *not* a ROWID. Life is complicated. Sorry for the mess. But we have to preserve backwards compatibility - even with bugs like this. One, no problem. Two, is "INTEGER PRIMARY KEY ASC" the same? I will try it tomorrow. _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

