mirror of
https://github.com/pgvector/pgvector.git
synced 2026-07-13 16:16:56 +08:00
Fixed operator is not unique error - fixes #20
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
## 0.2.1 (unreleased)
|
||||||
|
|
||||||
|
- Fixed `operator is not unique` error
|
||||||
|
|
||||||
## 0.2.0 (2021-10-03)
|
## 0.2.0 (2021-10-03)
|
||||||
|
|
||||||
- Added support for Postgres 14
|
- Added support for Postgres 14
|
||||||
|
|||||||
19
sql/vector--0.2.0--0.2.1.sql
Normal file
19
sql/vector--0.2.0--0.2.1.sql
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
-- complain if script is sourced in psql, rather than via CREATE EXTENSION
|
||||||
|
\echo Use "ALTER EXTENSION vector UPDATE TO '0.2.1'" to load this file. \quit
|
||||||
|
|
||||||
|
DROP CAST (integer[] AS vector);
|
||||||
|
DROP CAST (real[] AS vector);
|
||||||
|
DROP CAST (double precision[] AS vector);
|
||||||
|
DROP CAST (numeric[] AS vector);
|
||||||
|
|
||||||
|
CREATE CAST (integer[] AS vector)
|
||||||
|
WITH FUNCTION array_to_vector(integer[], integer, boolean) AS ASSIGNMENT;
|
||||||
|
|
||||||
|
CREATE CAST (real[] AS vector)
|
||||||
|
WITH FUNCTION array_to_vector(real[], integer, boolean) AS ASSIGNMENT;
|
||||||
|
|
||||||
|
CREATE CAST (double precision[] AS vector)
|
||||||
|
WITH FUNCTION array_to_vector(double precision[], integer, boolean) AS ASSIGNMENT;
|
||||||
|
|
||||||
|
CREATE CAST (numeric[] AS vector)
|
||||||
|
WITH FUNCTION array_to_vector(numeric[], integer, boolean) AS ASSIGNMENT;
|
||||||
@@ -109,16 +109,16 @@ CREATE CAST (vector AS vector)
|
|||||||
WITH FUNCTION vector(vector, integer, boolean) AS IMPLICIT;
|
WITH FUNCTION vector(vector, integer, boolean) AS IMPLICIT;
|
||||||
|
|
||||||
CREATE CAST (integer[] AS vector)
|
CREATE CAST (integer[] AS vector)
|
||||||
WITH FUNCTION array_to_vector(integer[], integer, boolean) AS IMPLICIT;
|
WITH FUNCTION array_to_vector(integer[], integer, boolean) AS ASSIGNMENT;
|
||||||
|
|
||||||
CREATE CAST (real[] AS vector)
|
CREATE CAST (real[] AS vector)
|
||||||
WITH FUNCTION array_to_vector(real[], integer, boolean) AS IMPLICIT;
|
WITH FUNCTION array_to_vector(real[], integer, boolean) AS ASSIGNMENT;
|
||||||
|
|
||||||
CREATE CAST (double precision[] AS vector)
|
CREATE CAST (double precision[] AS vector)
|
||||||
WITH FUNCTION array_to_vector(double precision[], integer, boolean) AS IMPLICIT;
|
WITH FUNCTION array_to_vector(double precision[], integer, boolean) AS ASSIGNMENT;
|
||||||
|
|
||||||
CREATE CAST (numeric[] AS vector)
|
CREATE CAST (numeric[] AS vector)
|
||||||
WITH FUNCTION array_to_vector(numeric[], integer, boolean) AS IMPLICIT;
|
WITH FUNCTION array_to_vector(numeric[], integer, boolean) AS ASSIGNMENT;
|
||||||
|
|
||||||
CREATE CAST (vector AS real[])
|
CREATE CAST (vector AS real[])
|
||||||
WITH FUNCTION vector_to_float4(vector, integer, boolean) AS IMPLICIT;
|
WITH FUNCTION vector_to_float4(vector, integer, boolean) AS IMPLICIT;
|
||||||
|
|||||||
@@ -54,3 +54,9 @@ SELECT cosine_distance('[1,2]', '[0,0]');
|
|||||||
|
|
||||||
SELECT cosine_distance('[1,2]', '[3]');
|
SELECT cosine_distance('[1,2]', '[3]');
|
||||||
ERROR: different vector dimensions 2 and 1
|
ERROR: different vector dimensions 2 and 1
|
||||||
|
SELECT ARRAY[1,2,3] = ARRAY[1,2,3];
|
||||||
|
?column?
|
||||||
|
----------
|
||||||
|
t
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
|||||||
@@ -16,3 +16,5 @@ SELECT inner_product('[1,2]', '[3]');
|
|||||||
SELECT round(cosine_distance('[1,2]', '[2,4]')::numeric, 5);
|
SELECT round(cosine_distance('[1,2]', '[2,4]')::numeric, 5);
|
||||||
SELECT cosine_distance('[1,2]', '[0,0]');
|
SELECT cosine_distance('[1,2]', '[0,0]');
|
||||||
SELECT cosine_distance('[1,2]', '[3]');
|
SELECT cosine_distance('[1,2]', '[3]');
|
||||||
|
|
||||||
|
SELECT ARRAY[1,2,3] = ARRAY[1,2,3];
|
||||||
|
|||||||
Reference in New Issue
Block a user