From 09ce4d07540628dfac84bf500e9bbddbca48dc9f Mon Sep 17 00:00:00 2001 From: Federico Caselli Date: Tue, 25 Nov 2025 22:48:01 +0100 Subject: [PATCH] re-enable vectore test in oracle Change-Id: I382a20027f36f32617d2680332873f1b7d5bcee6 --- test/dialect/oracle/test_types.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/test/dialect/oracle/test_types.py b/test/dialect/oracle/test_types.py index 0eac7d5c2b..890bcf7751 100644 --- a/test/dialect/oracle/test_types.py +++ b/test/dialect/oracle/test_types.py @@ -1066,11 +1066,6 @@ class TypesTest(fixtures.TestBase): eq_(t1.c.c1.type.storage_format, VectorStorageFormat.FLOAT32) @testing.requires.oracle_vector - @testing.skip_if( - lambda: True, - "Does not work on free versions of Oracle 23. " - "No testing platform available", - ) def test_vector_hnsw_index(self, metadata, connection): t1 = Table( "t1", @@ -1078,7 +1073,10 @@ class TypesTest(fixtures.TestBase): Column("id", Integer), Column( "embedding", - VECTOR(dim=3, storage_format=VectorStorageFormat.FLOAT32), + # can't specify dementions in the free version of oracle + # since otherwise it complains that has no spece for the index + VECTOR(), + # VECTOR(dim=3, storage_format=VectorStorageFormat.FLOAT32), ), ) -- 2.47.3