Add TxOptions.BeginQuery to allow overriding the default BEGIN query

https://github.com/jackc/pgx/issues/1643
pull/1653/head
Jack Christensen 2023-06-18 06:43:17 -05:00
parent 737b5af236
commit 9a5ead9048
2 changed files with 28 additions and 0 deletions

8
tx.go
View File

@ -44,6 +44,10 @@ type TxOptions struct {
IsoLevel TxIsoLevel IsoLevel TxIsoLevel
AccessMode TxAccessMode AccessMode TxAccessMode
DeferrableMode TxDeferrableMode DeferrableMode TxDeferrableMode
// BeginQuery is the SQL query that will be executed to begin the transaction. This allows using non-standard syntax
// such as BEGIN PRIORITY HIGH with CockroachDB. If set this will override the other settings.
BeginQuery string
} }
var emptyTxOptions TxOptions var emptyTxOptions TxOptions
@ -53,6 +57,10 @@ func (txOptions TxOptions) beginSQL() string {
return "begin" return "begin"
} }
if txOptions.BeginQuery != "" {
return txOptions.BeginQuery
}
var buf strings.Builder var buf strings.Builder
buf.Grow(64) // 64 - maximum length of string with available options buf.Grow(64) // 64 - maximum length of string with available options
buf.WriteString("begin") buf.WriteString("begin")

View File

@ -372,6 +372,26 @@ func TestBeginReadOnly(t *testing.T) {
} }
} }
func TestBeginTxBeginQuery(t *testing.T) {
t.Parallel()
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
defer cancel()
pgxtest.RunWithQueryExecModes(ctx, t, defaultConnTestRunner, nil, func(ctx context.Context, t testing.TB, conn *pgx.Conn) {
tx, err := conn.BeginTx(ctx, pgx.TxOptions{BeginQuery: "begin read only"})
require.NoError(t, err)
defer tx.Rollback(ctx)
var readOnly bool
conn.QueryRow(ctx, "select current_setting('transaction_read_only')::bool").Scan(&readOnly)
require.True(t, readOnly)
err = tx.Rollback(ctx)
require.NoError(t, err)
})
}
func TestTxNestedTransactionCommit(t *testing.T) { func TestTxNestedTransactionCommit(t *testing.T) {
t.Parallel() t.Parallel()