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
Remove footer from test output as pg17 contains Disabled: true|false
if enable_seqscan is set to false.
Modify failing tests because of operator rewrite hook to not use <?>
operator.
Modify test output files accordingly.
@@ -132,13 +127,11 @@ SELECT jobid, query, pg_cron_job_name, job_name, duration IS NOT NULL AS is_done
132
127
| | | | | | ^ +
133
128
| | | | | |
134
129
1 | SELECT pg_sleep(0.1); | async_task_1 | Lantern job name | t | succeeded |
135
-
(3 rows)
136
130
137
131
SELECT lantern.cancel_all_async_tasks();
138
132
cancel_all_async_tasks
139
133
------------------------
140
134
141
-
(1 row)
142
135
143
136
-- test async tasks on index creation
144
137
DROP TABLE IF EXISTS small_world;
@@ -156,29 +149,25 @@ SELECT lantern.async_task($$CREATE INDEX idx ON "sift_base1k_UpperCase" USING la
156
149
async_task
157
150
------------
158
151
4
159
-
(1 row)
160
152
161
153
-- blocks DB deletions that is why it is disabled for now
162
154
-- SELECT lantern.async_task($$CREATE INDEX CONCURRENTLY idx_concurrent ON "sift_base1k_UpperCase" USING lantern_hnsw (v) WITH (dim=128, M=6);$$, 'Indexing Job');
163
155
SELECT pg_sleep(5);
164
156
pg_sleep
165
157
----------
166
158
167
-
(1 row)
168
159
169
160
SELECT * FROM ldb_get_indexes('sift_base1k_UpperCase');
0 commit comments