mirror of
https://github.com/supabase/supabase.git
synced 2026-07-04 05:44:39 +08:00
* Add pooling mode dropdown to toggle between ports * Fix * Default pooling mode to the one thats configured * Update based on feedback * Fix * Update pooling modes modal copy * Small update * Small copy update * Small copy update * Another one * One final one
6 lines
407 B
TypeScript
6 lines
407 B
TypeScript
export const TRANSACTION_MODE_DESCRIPTION =
|
|
'Connection is assigned to the client for the duration of a transaction. Some session-based Postgres features such as prepared statements are not available with this option.'
|
|
|
|
export const SESSION_MODE_DESCRIPTION =
|
|
'When a new client connects, a connection is assigned to the client until it disconnects. All Postgres features can be used with this option.'
|