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.
Asked
Active
Viewed 403 times
0
-
What do you mean with "*default row-level lock mode*" - the isolation level? Or something else? – Jan 10 '19 at 10:30
-
Yes, for the isolation level – ncardez Jan 10 '19 at 11:18
1 Answers
0
The default isolation level in Postgres is read committed
.
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