|
|
|
|
|
by bmdavi3
3174 days ago
|
|
PostgreSQL has the same feature actually, which I learned as part of a MySQL -> PostgreSQL migration that's underway. SET session_replication_role TO 'replica';
We need this to load the data in without worrying about table order, or even individual row order for foreign keys that reference their own table.And we'll all try and forget this feature exists when we're done! |
|