MCPcopy Create free account
hub / github.com/erans/pgsqlite / has_delete_special_patterns

Function has_delete_special_patterns

src/query/unified_processor.rs:310–317  ·  view source on GitHub ↗
(bytes: &[u8])

Source from the content-addressed store, hash-verified

308/// Check DELETE-specific patterns
309#[inline(always)]
310fn has_delete_special_patterns(bytes: &[u8]) -> bool {
311 // Check for DELETE ... USING
312 if memchr::memmem::find(bytes, b"USING").is_some() {
313 return true;
314 }
315
316 has_any_special_pattern_fast(bytes)
317}
318
319/// Find RETURNING clause position
320#[inline(always)]

Callers 1

process_queryFunction · 0.85

Calls 1

Tested by

no test coverage detected