postgresqlPackages.lantern.tests.extension: fix test

The name of the access method was changed upstream a while ago.
This commit is contained in:
Wolfgang Walther 2024-09-20 21:04:01 +02:00
parent b84aacf2e6
commit b6567e0a54
No known key found for this signature in database
GPG Key ID: B39893FA5F65CAE1

View File

@ -54,7 +54,7 @@ stdenv.mkDerivation (finalAttrs: {
CREATE TABLE small_world (id integer, vector real[3]);
INSERT INTO small_world (id, vector) VALUES (0, '{0,0,0}'), (1, '{0,0,1}');
CREATE INDEX ON small_world USING hnsw (vector dist_l2sq_ops)
CREATE INDEX ON small_world USING lantern_hnsw (vector dist_l2sq_ops)
WITH (M=2, ef_construction=10, ef=4, dim=3);
'';
failureHook = "postgresqlStop";