Closed nathanleclaire closed 7 years ago
Couldn't find it in https://github.com/mgutz/dat/blob/v1/delete.go. This code doesn't compile on master.
Does it seem sound @mgutz ?
Thanks!
Also postgres doesn't support DELETE with a limit so this makes double sense.
DELETE
limit
The closest you could come is DELETE FROM __table__ WHERE __pk__ IN (SELECT __pk__ FROM __table__ LIMIT 1)
DELETE FROM __table__ WHERE __pk__ IN (SELECT __pk__ FROM __table__ LIMIT 1)
Couldn't find it in https://github.com/mgutz/dat/blob/v1/delete.go. This code doesn't compile on master.
Does it seem sound @mgutz ?
Thanks!