Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
ai_vdb_provider_postgres
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
ai_vdb_provider_postgres
Commits
7ceb49e1
"README.md" did not exist on "10a85c7e032d35ee2da4de7973e463a4d7a0f4eb"
Commit
7ceb49e1
authored
1 month ago
by
Marcus Johansson
Browse files
Options
Downloads
Patches
Plain Diff
Resolve
#3514289
"Fields check should"
parent
81a9f538
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!3
Resolve #3514289 "Fields check should"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ai_vdb_provider_postgres.module
+2
-2
2 additions, 2 deletions
ai_vdb_provider_postgres.module
with
2 additions
and
2 deletions
ai_vdb_provider_postgres.module
+
2
−
2
View file @
7ceb49e1
...
...
@@ -19,7 +19,7 @@ function ai_vdb_provider_postgres_search_api_index_update(IndexInterface $index)
if
(
!
isset
(
$backend_config
[
'database'
]))
{
return
;
}
if
(
!
$backend_config
[
'database'
]
==
'postgres'
)
{
if
(
$backend_config
[
'database'
]
!
==
'postgres'
)
{
return
;
}
$ai_vdb_provider_postgres
=
\Drupal
::
service
(
'ai.vdb_provider'
)
->
createInstance
(
'postgres'
);
...
...
@@ -44,4 +44,4 @@ function ai_vdb_provider_postgres_is_field_multiple($field) {
return
FALSE
;
}
return
TRUE
;
}
\ No newline at end of file
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment