|
|
|
|
|
by RedShift1
1554 days ago
|
|
You don't need 10 different connections, you can switch roles in a transaction. You connect using a role that can impersonate other roles and then run your queries like this: begin; set local role myrole; -- the important part SELECT * FROM page; commit; |
|