Skip to content

Commit 3756287

Browse files
dpageclaude
andcommitted
Add upgrade script for beta1 to beta2
Allows users to run: ALTER EXTENSION pgedge_vectorizer UPDATE TO '1.0-beta2'; Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 1540a36 commit 3756287

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ OBJS = src/pgedge_vectorizer.o \
1919
src/queue.o \
2020
src/embed.o
2121

22-
DATA = sql/$(EXTENSION)--$(EXTVERSION).sql
22+
DATA = sql/$(EXTENSION)--$(EXTVERSION).sql \
23+
sql/$(EXTENSION)--1.0-beta1--1.0-beta2.sql
2324

2425
# Test configuration for pg_regress
2526
REGRESS = setup chunking hybrid_chunking queue vectorization multi_column maintenance edge_cases providers worker cleanup embedding
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* pgedge_vectorizer--1.0-beta1--1.0-beta2.sql
4+
* Upgrade script from 1.0-beta1 to 1.0-beta2
5+
*
6+
* This release adds hybrid and markdown chunking strategies implemented
7+
* in C code. No SQL schema changes are required.
8+
*
9+
* Portions copyright (c) 2025 - 2026, pgEdge, Inc.
10+
*
11+
*-------------------------------------------------------------------------
12+
*/
13+
14+
-- No schema changes required for this upgrade.
15+
-- New chunking strategies (hybrid, markdown) are implemented in C code.

0 commit comments

Comments
 (0)