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

Method append

lib/sqlalchemy/sql/elements.py:2805–2815  ·  view source on GitHub ↗
(self, clause)

Source from the content-addressed store, hash-verified

2803 )
2804
2805 def append(self, clause):
2806 if self.group_contents:
2807 self.clauses.append(
2808 coercions.expect(self._text_converter_role, clause).self_group(
2809 against=self.operator
2810 )
2811 )
2812 else:
2813 self.clauses.append(
2814 coercions.expect(self._text_converter_role, clause)
2815 )
2816
2817 @util.ro_non_memoized_property
2818 def _from_objects(self) -> List[FromClause]:

Callers 15

add_detailMethod · 0.45
_sql_messageMethod · 0.45
on_connectMethod · 0.45
__init__Method · 0.45
to_multirangeMethod · 0.45
on_connectMethod · 0.45
post_create_tableMethod · 0.45
_get_columns_infoMethod · 0.45
_reflect_constraintMethod · 0.45

Calls 1

self_groupMethod · 0.45

Tested by 9

provide_fixtureMethod · 0.36
_log_sqlalchemy_infoFunction · 0.36
setup_test_classesFunction · 0.36
_parametrize_clsFunction · 0.36
_filter_exclusionsMethod · 0.36
combinationsMethod · 0.36
decorateMethod · 0.36