We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 936ef1c commit 3a8367cCopy full SHA for 3a8367c
1 file changed
src/langchain_google_spanner/vector_store.py
@@ -383,7 +383,10 @@ def _generate_sql(
383
)
384
385
configs = [id_column, content_column, embedding_column]
386
- configs.extend(column_configs)
+
387
+ if column_configs is not None:
388
+ configs.extend(column_configs)
389
390
column_configs = configs
391
392
if primary_key is None:
0 commit comments