You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When deriving a CrateDB adapter for LangChain from langchain-postgres, we are observing this error when invoking a test case.
pytest -vvv -k test_add_documents_documents
def _compiler_dispatch(
self: Visitable, visitor: Any, **kw: Any
) -> str:
"""Look for an attribute named "visit_<visit_name>" on the
visitor, and call it with the same kw params.
"""
try:
> meth = getter(visitor)
E AttributeError: 'CrateCompilerSA20' object has no attribute 'visit_on_conflict_do_update'
The text was updated successfully, but these errors were encountered:
amotl
changed the title
AttributeError: 'CrateCompilerSA20' object has no attribute 'visit_on_conflict_do_update'AttributeError: 'CrateCompilerSA20' object has no attribute 'visit_on_conflict_do_update'Dec 13, 2024
Problem
When deriving a CrateDB adapter for LangChain from langchain-postgres, we are observing this error when invoking a test case.
The text was updated successfully, but these errors were encountered: