Postgres crashes, when enable the vector extension
To Reproduce
install supabase cli
supabase init
supabase start
psql postgresql://postgres:postgres@127.0.0.1:54322/postgres
postgres=> create extension vector;
server closed the connection unexpectedly
This probably means the server terminated abnormally
before or while processing the request.
The connection to the server was lost. Attempting reset: Failed.
!?>
Expected behavior
1.create extension vector;
2.create table posts (
id serial primary key,
title text not null,
body text not null,
embedding vector(384)
);
3.exec above SQL, without error.
Bug report
Describe the bug
Postgres crashes, when enable the vector extension
To Reproduce
Expected behavior
1.create extension vector; 2.create table posts ( id serial primary key, title text not null, body text not null, embedding vector(384) ); 3.exec above SQL, without error.
Screenshots
System information
supabase services
─────────────────────────┼──────────────────────┼───────── supabase/postgres │ 15.1.0.147 │ - supabase/gotrue │ v2.143.0 │ - postgrest/postgrest │ v12.0.1 │ - supabase/realtime │ v2.25.66 │ - supabase/storage-api │ v0.46.4 │ - supabase/edge-runtime │ v1.38.0 │ - supabase/studio │ 20240301-0942bfe │ - supabase/postgres-meta │ v0.80.0 │ - supabase/logflare │ 1.4.0 │ - bitnami/pgbouncer │ 1.20.1-debian-11-r39 │ - darthsim/imgproxy │ v3.8.0 │ -