Commit 9020a54
fix(db): qualify cross-function calls in search migration (#66)
Both page_search_vector and search_pages call extract_text_from_lexical
without schema qualification. With set search_path = '' (empty), PostgreSQL
cannot resolve the function, causing every Deploy Migrations run to fail
since PR #53 was merged.
Prefix calls with public. so they resolve under an empty search path.
Co-authored-by: Ona <no-reply@ona.com>1 parent dca95b2 commit 9020a54
1 file changed
Lines changed: 2 additions & 2 deletions
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
63 | | - | |
| 63 | + | |
64 | 64 | | |
65 | 65 | | |
66 | 66 | | |
| |||
132 | 132 | | |
133 | 133 | | |
134 | 134 | | |
135 | | - | |
| 135 | + | |
136 | 136 | | |
137 | 137 | | |
138 | 138 | | |
| |||
0 commit comments