Files
scylladb/cql3
Lakshmi Narayanan Sreethar 690546fa40 cmake: link vector_search library to cql3 library
The `indexed_table_select_statement::actually_do_execute()` method
references `vector_search::vector_store_client::ann()`, but the
`vector_search` library, which provides its definition, is not linked
with the `cql3` library. This causes linker errors when other targets
are built, for example linking `comparable_bytes_test`, which links the
`types` library that in turn links `cql3` throws the following error :

```
...error: undefined symbol: vector_search::vector_store_client::ann...
```

Fix by adding `vector_search` to the private link libraries of `cql3`.

Fixes #26235

Signed-off-by: Lakshmi Narayanan Sreethar <lakshmi.sreethar@scylladb.com>

Closes scylladb/scylladb#26237
2025-09-25 11:05:51 +03:00
..
2025-01-28 21:14:49 +01:00
2025-09-08 10:07:40 +02:00
2025-02-25 10:32:32 +03:00
2025-07-30 12:17:23 +03:00