Skip to content

Commit f6f0dec

Browse files
authored
Merge branch 'v2.x' into vv-geoshape-queries
2 parents 5ff5f69 + c5fdfc8 commit f6f0dec

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
@@ -16,6 +16,7 @@
1616
use Predis\Command\Argument\Search\SchemaFields\NumericField;
1717
use Predis\Command\Argument\Search\SchemaFields\TagField;
1818
use Predis\Command\Argument\Search\SchemaFields\TextField;
19+
use Predis\Command\Argument\Search\SchemaFields\VectorField;
1920
use Predis\Command\Redis\PredisCommandTestCase;
2021

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

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

0 commit comments

Comments
 (0)