Skip to content

Commit 8657698

Browse files
committed
Merge branch 'v2.x' of github.com:predis/predis into vv-indexing-empty-values
2 parents d18e468 + c5fdfc8 commit 8657698

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

tests/Predis/Command/Redis/Search/FTCREATE_Test.php

+27
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
use Predis\Command\Argument\Search\SchemaFields\NumericField;
1818
use Predis\Command\Argument\Search\SchemaFields\TagField;
1919
use Predis\Command\Argument\Search\SchemaFields\TextField;
20+
use Predis\Command\Argument\Search\SchemaFields\VectorField;
2021
use Predis\Command\Redis\PredisCommandTestCase;
2122

2223
/**
@@ -87,6 +88,32 @@ public function testCreatesSearchIndexWithGivenArgumentsAndSchema(): void
8788
$this->assertEquals('OK', $actualResponse);
8889
}
8990

91+
/**
92+
* @group connected
93+
* @group relay-resp3
94+
* @return void
95+
* @requiresRediSearchVersion >= 2.9.0
96+
*/
97+
public function testCreatesSearchIndexWithFloat16Vector(): void
98+
{
99+
$redis = $this->getClient();
100+
101+
$schema = [
102+
new VectorField('float16',
103+
'FLAT',
104+
['TYPE', 'FLOAT16', 'DIM', 768, 'DISTANCE_METRIC', 'COSINE']
105+
),
106+
new VectorField('bfloat16',
107+
'FLAT',
108+
['TYPE', 'BFLOAT16', 'DIM', 768, 'DISTANCE_METRIC', 'COSINE']
109+
),
110+
];
111+
112+
$actualResponse = $redis->ftcreate('index', $schema);
113+
114+
$this->assertEquals('OK', $actualResponse);
115+
}
116+
90117
/**
91118
* @group connected
92119
* @group relay-resp3

0 commit comments

Comments
 (0)