mirror of
https://github.com/langchain-ai/langchain-postgres.git
synced 2026-07-16 01:33:18 -04:00
[PR #267] [MERGED] Fix incorrect connection string format in README.md example #270
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/langchain-ai/langchain-postgres/pull/267
Author: @yukiharada1228
Created: 11/5/2025
Status: ✅ Merged
Merged: 11/14/2025
Merged by: @averikitsch
Base:
main← Head:main📝 Commits (1)
c2c8addUpdate README.md📊 Changes
1 file changed (+1 additions, -1 deletions)
View changed files
📝
README.md(+1 -1)📄 Description
The connection string example in README.md is incorrect.
Currently, README.md shows:
However, this format causes the following error:
The actual example files (
examples/vectorstore.ipynb,examples/pg_vectorstore.ipynb, etc.) use the correct formatpostgresql+psycopg://, which works correctly.The
examples/vectorstore.ipynbalso explicitly states: "the driver name ispsycopgnotpsycopg3, but it'll usepsycopg3."Proposed fix:
Line 46 in README.md should be changed from:
to:
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.