0

What is the default row-level lock mode used in PostgreSQL? And because the question is related to Sequelize ORM, so, it would be nice to know which mode is used by default to avoid or modify my queries.

ncardez
  • 139
  • 2
  • 11

1 Answers1

0

The default isolation level in Postgres is read committed.

Quote from the manual

Read Committed is the default isolation level in PostgreSQL

  • I will select this as the answer due to right now I don't remember well what I was trying to solve that day :/ , anyway thanks. – ncardez Jan 10 '19 at 11:31