MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / visit_bindparam

Method visit_bindparam

lib/sqlalchemy/sql/elements.py:616–621  ·  view source on GitHub ↗
(bind: BindParameter[Any])

Source from the content-addressed store, hash-verified

614 kwargs.update(optionaldict)
615
616 def visit_bindparam(bind: BindParameter[Any]) -> None:
617 if bind.key in kwargs:
618 bind.value = kwargs[bind.key]
619 bind.required = False
620 if unique:
621 bind._convert_to_unique()
622
623 return cloned_traverse(
624 self,

Callers

nothing calls this directly

Calls 1

_convert_to_uniqueMethod · 0.80

Tested by

no test coverage detected