Skip to content

Conversation

@bayandin
Copy link
Contributor

@bayandin bayandin commented Jul 6, 2023

pg_embedding extension release

```
CREATE EXTENSION embedding;
CREATE TABLE t (val real[]);
INSERT INTO t (val) VALUES ('{0,0,0}'), ('{1,2,3}'), ('{1,1,1}'), (NULL);
CREATE INDEX ON t USING hnsw (val) WITH (maxelements = 10, dims=3, m=3);
INSERT INTO t (val) VALUES (array[1,2,4]);

SELECT * FROM t ORDER BY val <-> array[3,3,3];
   val   
---------
 {1,2,3}
 {1,2,4}
 {1,1,1}
 {0,0,0}
 
(5 rows)
```
@bayandin bayandin requested review from raoufchebri and vadim2404 July 6, 2023 08:44
@github-actions
Copy link

github-actions bot commented Jul 6, 2023

1016 tests run: 975 passed, 0 failed, 41 skipped (full report)


Flaky tests (3)

Postgres 15

  • test_crafted_wal_end[last_wal_record_crossing_segment]: release
  • test_hot_standby: release

Postgres 14

  • test_partial_evict_tenant: release
The comment gets automatically updated with the latest test results
feff887 at 2023-07-06T10:58:55.937Z :recycle:

@bayandin bayandin changed the title Release 2023-07-06 (pg_embedding only) Release 2023-07-06 (add pg_embedding extension) Jul 6, 2023
@bayandin bayandin changed the title Release 2023-07-06 (add pg_embedding extension) Release 2023-07-06 (add pg_embedding extension only) Jul 6, 2023
@bayandin bayandin merged commit 2c724e5 into release Jul 6, 2023
@bayandin bayandin deleted the releases/2023-07-06-hotfix branch July 6, 2023 11:19
efriis pushed a commit to langchain-ai/langchain that referenced this pull request Jul 7, 2023
hi @rlancemartin ,

We had a new deployment and the `pg_extension` creation command was
updated from `CREATE EXTENSION pg_embedding` to `CREATE EXTENSION
embedding`.

neondatabase/neon#4646

The extension not made public yet. No users will be affected by this.
Will be public next week.

Please let me know if you have any questions.

Thank you in advance 🙏
@danieltprice
Copy link
Contributor

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants