uqa-execution 0.3.5

Volcano physical operators with row-batch pipelines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
//
// Unified Query Algebra
//
// Copyright (c) 2023-2026 Cognica, Inc.
//

//! Row-lock target resolution and the physical `LockRows` operator.

use super::recheck_source::LockRowsRecheckSource;
use crate::catalog::schema::virtual_relation_accepts_row_lock as virtual_row_lockable;
use crate::catalog::{CatalogReadView, RelationNameResolution};
use crate::query::{binding::bind_source_plan_schema, CteScope};
use crate::row_locks::{
    recheck::recheck_storage_names_match, retry_cache::RowLockRetryCache, LockAcquire,
};
use crate::{Batch, ExecResult, PhysicalOperator, PhysicalRow, RowProjectionValue, RowSchema};
use uqa_sql::ast::{LockStrength, LockWait, LockingClause, RelationPersistence};
use uqa_sql::{
    plan::{QueryBlockPlan, QueryPlan, RelationalPlan, SourcePlan},
    SQLError, SQLParam, ScalarExpr,
};
pub mod context;
pub use context::RowLockContext;

pub use crate::query::scope::ResolvedRowLock;

pub fn query_has_row_locks(query: &QueryPlan) -> bool {
    query_plan_has_row_locks(query)
}

/// Acquire `PostgreSQL` `AccessShareLock` equivalents for every concrete table referenced by a query. The locks are transaction-scoped, so a cursor declaration keeps its bound relations alive until commit while ordinary persistent statements keep DDL from changing a source during execution.
pub fn lock_query_relations<S: Clone + Send + Sync + 'static>(
    context: RowLockContext<'_, S>,
    query: &QueryPlan,
) -> Result<(), SQLError> {
    let mut locked = std::collections::BTreeSet::new();
    let mut visiting_views = std::collections::BTreeSet::new();
    let transition_relations = context.scopes.transition_relation_names();
    lock_query_plan_relations(
        context,
        query,
        &transition_relations,
        &mut locked,
        &mut visiting_views,
    )
}

fn lock_query_plan_relations<S: Clone + Send + Sync + 'static>(
    context: RowLockContext<'_, S>,
    query: &QueryPlan,
    inherited_ctes: &std::collections::BTreeSet<String>,
    locked: &mut std::collections::BTreeSet<String>,
    visiting_views: &mut std::collections::BTreeSet<String>,
) -> Result<(), SQLError> {
    let mut visible_ctes = inherited_ctes.clone();
    for cte in &query.ctes {
        let mut definition_scope = visible_ctes.clone();
        if cte.recursive {
            definition_scope.insert(cte.name.clone());
        }
        lock_cte_plan_relations(
            context,
            &cte.body,
            &definition_scope,
            locked,
            visiting_views,
        )?;
        visible_ctes.insert(cte.name.clone());
    }
    lock_relational_plan_relations(
        context,
        &query.root,
        &visible_ctes,
        query.relations_bound,
        locked,
        visiting_views,
    )
}

fn lock_cte_plan_relations<S: Clone + Send + Sync + 'static>(
    context: RowLockContext<'_, S>,
    body: &uqa_sql::plan::CtePlanBody,
    inherited: &std::collections::BTreeSet<String>,
    locked: &mut std::collections::BTreeSet<String>,
    visiting: &mut std::collections::BTreeSet<String>,
) -> Result<(), SQLError> {
    match body {
        uqa_sql::plan::CtePlanBody::Query(query) => {
            lock_query_plan_relations(context, query, inherited, locked, visiting)
        }
        uqa_sql::plan::CtePlanBody::Command(command) => {
            let bound = match command.as_ref() {
                uqa_sql::plan::CommandPlan::Insert(plan) => plan.relations_bound,
                uqa_sql::plan::CommandPlan::Update(plan) => plan.relations_bound,
                uqa_sql::plan::CommandPlan::Delete(plan) => plan.relations_bound,
                _ => false,
            };
            if let Some(target) = command.mutation_target() {
                if let Some((table, _)) = context.catalog.resolve_relation(target, bound)? {
                    context
                        .session
                        .lock_relation(&table, crate::row_locks::RelationLockMode::RowExclusive)?;
                }
            }
            let mut visible = inherited.clone();
            if command.ctes().iter().any(|cte| cte.recursive) {
                visible.extend(command.ctes().iter().map(|cte| cte.name.clone()));
            }
            for cte in command.ctes() {
                lock_cte_plan_relations(context, &cte.body, &visible, locked, visiting)?;
                visible.insert(cte.name.clone());
            }
            for query in command.query_inputs() {
                lock_query_plan_relations(context, query, &visible, locked, visiting)?;
            }
            if let Some(source) = command.source_input() {
                lock_source_plan_relations(context, source, &visible, bound, locked, visiting)?;
            }
            Ok(())
        }
    }
}

fn validate_cte_row_locks<S: Clone + Send + Sync + 'static>(
    context: RowLockContext<'_, S>,
    body: &uqa_sql::plan::CtePlanBody,
    params: &[SQLParam],
    ctes: &CteScope<S>,
) -> Result<(), SQLError> {
    match body {
        uqa_sql::plan::CtePlanBody::Query(query) => {
            validate_query_plan_row_locks(context, query, params, ctes)
        }
        uqa_sql::plan::CtePlanBody::Command(command) => {
            for cte in command.ctes() {
                validate_cte_row_locks(context, &cte.body, params, ctes)?;
            }
            for query in command.query_inputs() {
                validate_query_plan_row_locks(context, query, params, ctes)?;
            }
            if let Some(source) = command.source_input() {
                validate_source_row_locks(context, source, params, ctes)?;
            }
            Ok(())
        }
    }
}

fn lock_relational_plan_relations<S: Clone + Send + Sync + 'static>(
    context: RowLockContext<'_, S>,
    plan: &RelationalPlan,
    visible_ctes: &std::collections::BTreeSet<String>,
    relations_bound: bool,
    locked: &mut std::collections::BTreeSet<String>,
    visiting_views: &mut std::collections::BTreeSet<String>,
) -> Result<(), SQLError> {
    match plan {
        RelationalPlan::QueryBlock(block) => {
            if let Some(source) = block.from.as_ref() {
                lock_source_plan_relations(
                    context,
                    source,
                    visible_ctes,
                    relations_bound,
                    locked,
                    visiting_views,
                )?;
            }
            for subquery in &block.subqueries {
                lock_query_plan_relations(context, subquery, visible_ctes, locked, visiting_views)?;
            }
            Ok(())
        }
        RelationalPlan::SetOp {
            left,
            right,
            subqueries,
            ..
        } => {
            lock_query_plan_relations(context, left, visible_ctes, locked, visiting_views)?;
            lock_query_plan_relations(context, right, visible_ctes, locked, visiting_views)?;
            for subquery in subqueries {
                lock_query_plan_relations(context, subquery, visible_ctes, locked, visiting_views)?;
            }
            Ok(())
        }
        RelationalPlan::Values { subqueries, .. } => {
            for subquery in subqueries {
                lock_query_plan_relations(context, subquery, visible_ctes, locked, visiting_views)?;
            }
            Ok(())
        }
    }
}

fn lock_source_plan_relations<S: Clone + Send + Sync + 'static>(
    context: RowLockContext<'_, S>,
    source: &SourcePlan,
    visible_ctes: &std::collections::BTreeSet<String>,
    relations_bound: bool,
    locked: &mut std::collections::BTreeSet<String>,
    visiting_views: &mut std::collections::BTreeSet<String>,
) -> Result<(), SQLError> {
    match source {
        SourcePlan::Table {
            name,
            include_descendants,
            ..
        } => {
            if uqa_sql::semantics::cte_reference_name(name)
                .is_some_and(|name| visible_ctes.contains(&name))
            {
                return Ok(());
            }
            match context.catalog.resolve_relation(name, relations_bound)? {
                Some((table, "table")) => {
                    for member in context
                        .catalog
                        .hierarchy_scan_tables(&table, *include_descendants)?
                    {
                        if locked.insert(member.clone()) {
                            context.session.lock_relation(
                                &member,
                                crate::row_locks::RelationLockMode::AccessShare,
                            )?;
                        }
                    }
                    Ok(())
                }
                Some((view_name, "view")) => {
                    let view = context.catalog.view_plan(&view_name)?.ok_or_else(|| {
                        SQLError::Internal(format!(
                            "resolved query view `{view_name}` disappeared before locking"
                        ))
                    })?;
                    if !visiting_views.insert(view_name.clone()) {
                        return Err(SQLError::Internal(format!(
                            "view `{view_name}` has a recursive relation dependency"
                        )));
                    }
                    let result = lock_query_plan_relations(
                        context,
                        &view,
                        &std::collections::BTreeSet::new(),
                        locked,
                        visiting_views,
                    );
                    visiting_views.remove(&view_name);
                    result
                }
                Some((foreign, "foreign table")) => {
                    if locked.insert(foreign.clone()) {
                        context.session.lock_relation(
                            &foreign,
                            crate::row_locks::RelationLockMode::AccessShare,
                        )?;
                    }
                    Ok(())
                }
                Some(_) | None => Ok(()),
            }
        }
        SourcePlan::Join { left, right, .. } => {
            lock_source_plan_relations(
                context,
                left,
                visible_ctes,
                relations_bound,
                locked,
                visiting_views,
            )?;
            lock_source_plan_relations(
                context,
                right,
                visible_ctes,
                relations_bound,
                locked,
                visiting_views,
            )
        }
        SourcePlan::Subquery { body, .. } => {
            lock_query_plan_relations(context, body, visible_ctes, locked, visiting_views)
        }
        SourcePlan::Function { relations, .. } => {
            lock_table_function_relations(context, relations.as_ref(), relations_bound, locked)
        }
        SourcePlan::FunctionGroup { functions, .. } => {
            for function in functions {
                lock_table_function_relations(
                    context,
                    function.relations.as_ref(),
                    relations_bound,
                    locked,
                )?;
            }
            Ok(())
        }
        SourcePlan::Values { .. } => Ok(()),
    }
}

/// Resolve cursor row-lock targets without opening or pulling the query. `PostgreSQL` performs these declaration-time checks even though expression evaluation and tuple locking wait until FETCH.
pub fn validate_query_row_locks<S: Clone + Send + Sync + 'static>(
    context: RowLockContext<'_, S>,
    query: &QueryPlan,
    params: &[SQLParam],
) -> Result<(), SQLError> {
    let ctes = context.scopes.current_routine_scope();
    validate_query_plan_row_locks(context, query, params, &ctes)
}

fn validate_query_plan_row_locks<S: Clone + Send + Sync + 'static>(
    context: RowLockContext<'_, S>,
    query: &QueryPlan,
    params: &[SQLParam],
    ctes: &CteScope<S>,
) -> Result<(), SQLError> {
    for cte in &query.ctes {
        validate_cte_row_locks(context, &cte.body, params, ctes)?;
    }
    match &query.root {
        RelationalPlan::QueryBlock(block) => {
            for subquery in &block.subqueries {
                validate_query_plan_row_locks(context, subquery, params, ctes)?;
            }
            if let Some(from) = block.from.as_ref() {
                validate_source_row_locks(context, from, params, ctes)?;
                resolve_row_locks(
                    context,
                    from,
                    &block.locking,
                    block.r#where.as_ref(),
                    params,
                    ctes,
                )?;
            }
        }
        RelationalPlan::SetOp { left, right, .. } => {
            validate_query_plan_row_locks(context, left, params, ctes)?;
            validate_query_plan_row_locks(context, right, params, ctes)?;
        }
        RelationalPlan::Values { subqueries, .. } => {
            for subquery in subqueries {
                validate_query_plan_row_locks(context, subquery, params, ctes)?;
            }
        }
    }
    Ok(())
}

fn validate_source_row_locks<S: Clone + Send + Sync + 'static>(
    context: RowLockContext<'_, S>,
    source: &SourcePlan,
    params: &[SQLParam],
    ctes: &CteScope<S>,
) -> Result<(), SQLError> {
    match source {
        SourcePlan::Join { left, right, .. } => {
            validate_source_row_locks(context, left, params, ctes)?;
            validate_source_row_locks(context, right, params, ctes)
        }
        SourcePlan::Subquery { body, .. } => {
            validate_query_plan_row_locks(context, body, params, ctes)
        }
        SourcePlan::Table { .. }
        | SourcePlan::Values { .. }
        | SourcePlan::Function { .. }
        | SourcePlan::FunctionGroup { .. } => Ok(()),
    }
}

use uqa_sql::semantics::locking::query_plan_has_row_locks;

pub fn resolve_row_locks<S: Clone + Send + Sync + 'static>(
    context: RowLockContext<'_, S>,
    from: &SourcePlan,
    locking: &[LockingClause],
    predicate: Option<&ScalarExpr>,
    params: &[SQLParam],
    ctes: &CteScope<S>,
) -> Result<Vec<ResolvedRowLock>, SQLError> {
    if locking.is_empty() {
        return Ok(Vec::new());
    }
    let mut effective_from = from.clone();
    reduce_null_rejected_outer_joins_to_fixpoint(
        context,
        &mut effective_from,
        predicate,
        params,
        ctes,
    )?;
    validate_lock_relation_aliases(&effective_from, locking)?;
    let sources = collect_source_leaves(&effective_from, false, ctes)?;
    let mut assigned: Vec<Option<(LockStrength, LockWait)>> = vec![None; sources.len()];
    for clause in locking {
        let selected = if clause.relations.is_empty() {
            sources
                .iter()
                .enumerate()
                .filter_map(|(index, source)| source.kind.implicitly_lockable().then_some(index))
                .collect::<Vec<_>>()
        } else {
            let mut selected = vec![false; sources.len()];
            for relation in &clause.relations {
                let matches = sources
                    .iter()
                    .enumerate()
                    .filter_map(|(index, source)| {
                        source
                            .names
                            .iter()
                            .any(|name| name == relation)
                            .then_some(index)
                    })
                    .collect::<Vec<_>>();
                if matches.is_empty() {
                    return Err(SQLError::Routine {
                        sqlstate: "42P01".into(),
                        message: format!(
                            "relation \"{relation}\" in FOR UPDATE/SHARE clause not found in FROM clause"
                        ),
                    });
                }
                for source_index in matches {
                    selected[source_index] = true;
                }
            }
            selected
                .into_iter()
                .enumerate()
                .filter_map(|(index, selected)| selected.then_some(index))
                .collect()
        };
        for source_index in selected {
            assigned[source_index] = Some(match assigned[source_index] {
                Some((strength, wait)) => (
                    strength.max(clause.strength),
                    merge_lock_wait(wait, clause.wait),
                ),
                None => (clause.strength, clause.wait),
            });
        }
    }
    let mut resolved = Vec::new();
    for (source, assignment) in sources.iter().zip(assigned) {
        let Some((strength, wait)) = assignment else {
            continue;
        };
        reject_unusable_lock_leaf(context, source, strength)?;
        if !source.kind.carries_row_identity() {
            continue;
        }
        resolved.push(ResolvedRowLock {
            qualifier: source.qualifier.clone(),
            storage_name: source.storage_name.clone(),
            display_name: source.display_name.clone(),
            strength,
            wait,
            identity_source: source.kind.is_identity_source(),
        });
    }
    if context.session.current_transaction_is_read_only()
        && locks_non_temporary_relation(context, &resolved)?
    {
        return Err(SQLError::Routine {
            sqlstate: "25006".into(),
            message: "cannot execute SELECT in a read-only transaction".into(),
        });
    }
    Ok(resolved)
}

fn locks_non_temporary_relation<S: Clone + Send + Sync + 'static>(
    context: RowLockContext<'_, S>,
    locks: &[ResolvedRowLock],
) -> Result<bool, SQLError> {
    for lock in locks {
        let persistence = context
            .catalog
            .table_persistence(&lock.storage_name)
            .map_err(|error| {
                SQLError::Internal(format!(
                    "resolve row-lock target `{}`: {error}",
                    lock.storage_name
                ))
            })?;
        if persistence != Some(RelationPersistence::Temporary) {
            return Ok(true);
        }
    }
    Ok(false)
}

fn source_contains_join_alias(source: &SourcePlan, target: &str) -> bool {
    match source {
        SourcePlan::Join {
            left, right, alias, ..
        } => {
            alias.as_deref() == Some(target)
                || source_contains_join_alias(left, target)
                || source_contains_join_alias(right, target)
        }
        SourcePlan::Table { .. }
        | SourcePlan::Values { .. }
        | SourcePlan::Function { .. }
        | SourcePlan::FunctionGroup { .. }
        | SourcePlan::Subquery { .. } => false,
    }
}

mod execution;
mod null_rejection;
mod targets;
use null_rejection::reduce_null_rejected_outer_joins_to_fixpoint;
use targets::lock_table_function_relations;

fn merge_lock_wait(left: LockWait, right: LockWait) -> LockWait {
    match (left, right) {
        (LockWait::NoWait, _) | (_, LockWait::NoWait) => LockWait::NoWait,
        (LockWait::SkipLocked, _) | (_, LockWait::SkipLocked) => LockWait::SkipLocked,
        (LockWait::Block, LockWait::Block) => LockWait::Block,
    }
}

pub use uqa_sql::semantics::locking::apply_propagated_view_lock;

mod leaf_validation;
use leaf_validation::{
    collect_source_leaf_plans, collect_source_leaves, copy_recheck_source_row,
    reject_unusable_lock_leaf, validate_locking_block_shape,
};

pub struct LockRows<'a, S: Clone> {
    input: Box<dyn PhysicalOperator + 'a>,
    context: RowLockContext<'a, S>,
    params: &'a [SQLParam],
    targets: Vec<ResolvedRowLock>,
    max_rows: Option<u64>,
    emitted: u64,
    pending_rows: std::vec::IntoIter<PhysicalRow>,
    discard_lock_origins: bool,
    retry_cache: Option<std::sync::Arc<RowLockRetryCache>>,
    recheck_source: Option<LockRowsRecheckSource<S>>,
    schema: RowSchema,
    /// Base relations that already hold this statement's `RowShare` lock. A view or derived-table target reveals its base relations only through row origins, so the relation lock is taken on first sight of each.
    relation_locked: std::collections::BTreeSet<std::sync::Arc<str>>,
}

impl<'a, S: Clone> LockRows<'a, S> {
    #[expect(
        clippy::too_many_arguments,
        reason = "keeps execution context inputs aligned"
    )]
    pub fn new(
        input: Box<dyn PhysicalOperator + 'a>,
        context: RowLockContext<'a, S>,
        params: &'a [SQLParam],
        targets: Vec<ResolvedRowLock>,
        max_rows: Option<u64>,
        discard_lock_origins: bool,
        retry_cache: Option<std::sync::Arc<RowLockRetryCache>>,
        recheck_source: Option<LockRowsRecheckSource<S>>,
    ) -> Self {
        let schema = input.row_schema().clone();
        Self {
            input,
            context,
            params,
            targets,
            max_rows,
            emitted: 0,
            pending_rows: Vec::new().into_iter(),
            discard_lock_origins,
            retry_cache,
            recheck_source,
            schema,
            relation_locked: std::collections::BTreeSet::new(),
        }
    }
}

impl<S: Clone + Send + Sync + 'static> PhysicalOperator for LockRows<'_, S> {
    fn row_schema(&self) -> &RowSchema {
        &self.schema
    }

    fn estimated_cardinality(&self) -> Option<u64> {
        match (self.input.estimated_cardinality(), self.max_rows) {
            (Some(input), Some(max_rows)) => Some(input.min(max_rows)),
            (estimate, None) | (None, estimate) => estimate,
        }
    }

    fn output_ordering(&self) -> &[crate::PhysicalOrder] {
        self.input.output_ordering()
    }

    fn open(&mut self) -> ExecResult<()> {
        self.emitted = 0;
        self.pending_rows = Vec::new().into_iter();
        self.input.open()
    }

    // Keep the virtual pull boundary intact under `ThinLTO`; the acquisition and recheck state machines below are deliberately separate optimized functions.
    #[inline(never)]
    fn next(&mut self) -> ExecResult<Option<Batch>> {
        if self
            .max_rows
            .is_some_and(|max_rows| self.emitted >= max_rows)
        {
            return Ok(None);
        }
        loop {
            self.context.cancellation.check().map_err(SQLError::from)?;
            if let Some(row) = self.pending_rows.next() {
                if let Some(mut row) = self.lock_physical_row(row)? {
                    if self.discard_lock_origins {
                        row.discard_lock_origins_mut();
                    }
                    self.emitted = self.emitted.saturating_add(1);
                    // One row per batch keeps locking demand-driven: an enclosing consumer such as an outer LIMIT over a locking derived table stops pulling after the rows it needs, so rows it never consumes are never locked (PostgreSQL 18 LockRows semantics). Batching ahead would lock rows the consumer discards.
                    return Ok(Some(Batch::from_physical_rows(
                        self.schema.clone(),
                        vec![row],
                    )));
                }
                continue;
            }
            let Some(batch) = self.input.next()? else {
                return Ok(None);
            };
            self.pending_rows = batch.rows.into_iter();
        }
    }

    fn close(&mut self) -> ExecResult<()> {
        self.input.close()
    }
}

pub fn attach_lock_rows<'a, S: Clone + Send + Sync + 'static>(
    context: RowLockContext<'a, S>,
    operator: Box<dyn PhysicalOperator + 'a>,
    statement: &QueryBlockPlan,
    params: &'a [SQLParam],
    ctes: &CteScope<S>,
    max_rows: Option<u64>,
    recheck_source: Option<LockRowsRecheckSource<S>>,
) -> Result<Box<dyn PhysicalOperator + 'a>, SQLError> {
    let Some(first_clause) = statement.locking.first() else {
        return Ok(operator);
    };
    if ctes.row_lock_recheck_active() {
        // A tuple-local recheck re-executes the plan below its own LockRows boundary. Locks for the candidate are already held, so nested locking is suppressed while lock identities keep flowing.
        return Ok(operator);
    }
    validate_locking_block_shape(statement, first_clause.strength)?;
    let Some(from) = statement.from.as_ref() else {
        return Ok(operator);
    };
    let targets = resolve_row_locks(
        context,
        from,
        &statement.locking,
        statement.r#where.as_ref(),
        params,
        ctes,
    )?;
    if targets.is_empty() {
        return Ok(operator);
    }
    let mut locked_relations = std::collections::BTreeSet::new();
    for target in targets.iter().filter(|target| !target.identity_source) {
        if locked_relations.insert(target.storage_name.clone()) {
            context.session.lock_relation(
                &target.storage_name,
                crate::row_locks::RelationLockMode::RowShare,
            )?;
        }
    }
    // The recheck context is shared per SQL statement through the context session, so every locking scope reaches it: top-level queries, DML sources, DML CTEs, CREATE TABLE AS, prepared execution, and EXPLAIN ANALYZE bodies.
    let retry_cache = context.session.statement_row_lock_cache()?;
    Ok(Box::new(LockRows::new(
        operator,
        context,
        params,
        targets,
        max_rows,
        !ctes.lock_identities.retain_after_lock,
        Some(retry_cache),
        recheck_source,
    )))
}

fn validate_lock_relation_aliases(
    from: &SourcePlan,
    locking: &[LockingClause],
) -> Result<(), SQLError> {
    for clause in locking {
        if clause
            .relations
            .iter()
            .any(|relation| source_contains_join_alias(from, relation))
        {
            return Err(SQLError::Unsupported(format!(
                "{} cannot be applied to a join",
                clause.strength.sql_name()
            )));
        }
    }
    Ok(())
}