Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
singlestore-labs
GitHub Repository: singlestore-labs/singlestoredb-python
Path: blob/main/singlestoredb/tests/test_9_1.sql
801 views
1
-- Test data for SingleStore 9.1+ features
2
-- This file is automatically loaded by utils.py if server version >= 9.1
3
4
-- Float16 (half-precision) vectors
5
CREATE TABLE IF NOT EXISTS `f16_vectors` (
6
id INT(11),
7
a VECTOR(3, F16)
8
);
9
INSERT INTO f16_vectors VALUES(1, '[0.267, 0.535, 0.802]');
10
INSERT INTO f16_vectors VALUES(2, '[0.371, 0.557, 0.743]');
11
INSERT INTO f16_vectors VALUES(3, '[-0.424, -0.566, 0.707]');
12
13