eulerto / pgquarrel

pgquarrel compares PostgreSQL database schemas (DDL)
BSD 3-Clause "New" or "Revised" License
388 stars 42 forks source link

pgquarrel does not work with sequences in PostgreSQL v10 #34

Closed laurenz closed 6 years ago

laurenz commented 6 years ago

Selecting from a sequence has changed in PostgreSQL v10. There are fewer columns now than there used to be, because most of the information has been transferred to the new system catalog pg_sequence.

pgquarrel has a problem with that because it tries to get the information by selecting from the sequence.

eulerto commented 6 years ago

@laurenz Could you test with this new commit?

laurenz commented 6 years ago

Thank you, that works fine.