Warn not to create table and use it in the same batch

fixes https://github.com/jackc/pgx/issues/2182
pull/2189/head
Jack Christensen 2024-12-05 16:29:39 -06:00
parent e3c81cc153
commit ac0b46f2f9
1 changed files with 3 additions and 0 deletions

View File

@ -915,6 +915,9 @@ func (c *Conn) QueryRow(ctx context.Context, sql string, args ...any) Row {
// SendBatch sends all queued queries to the server at once. All queries are run in an implicit transaction unless
// explicit transaction control statements are executed. The returned BatchResults must be closed before the connection
// is used again.
//
// Depending on the QueryExecMode, all queries may be prepared before any are executed. This means that creating a table
// and using it in a subsequent query in the same batch can fail.
func (c *Conn) SendBatch(ctx context.Context, b *Batch) (br BatchResults) {
if c.batchTracer != nil {
ctx = c.batchTracer.TraceBatchStart(ctx, c, TraceBatchStartData{Batch: b})