Skip to content

Commit 6c8991c

Browse files
authored
chore: upload 1.1.0 schema scripts (#421)
Signed-off-by: usamoi <usamoi@outlook.com>
1 parent 0b1c4f2 commit 6c8991c

8 files changed

Lines changed: 1726 additions & 28 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
Maintainer: Tensorchord <support@tensorchord.ai>
111111
Description: Vector database plugin for Postgres, written in Rust, specifically designed for LLM
112112
Homepage: https://vectorchord.ai/
113-
License: AGPL-3.0-only or Elastic-2.0" \
113+
License: AGPL-3.0-only OR Elastic-2.0" \
114114
> ~/debian/DEBIAN/control
115115
(cd ~/debian && find usr -type f -print0 | xargs -0 md5sum) > ~/debian/DEBIAN/md5sums
116116
dpkg-deb --root-owner-group -Zxz --build ~/debian ~/postgresql-${VERSION}-vchord_${SEMVER}-1_${PLATFORM}.deb

crates/vchordg/src/tuples.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ use zerocopy::{FromBytes, Immutable, IntoBytes, KnownLayout};
2121
pub const ALIGN: usize = 8;
2222
pub type Tag = u64;
2323
const MAGIC: Tag = Tag::from_ne_bytes(*b"vchordg\0");
24-
const VERSION: u64 = 1000;
24+
const VERSION: u64 = 1001;
2525

2626
#[inline(always)]
2727
fn tag(source: &[u8]) -> Tag {

crates/vchordrq/src/tuples.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use zerocopy::{FromBytes, Immutable, IntoBytes, KnownLayout};
2020
pub const ALIGN: usize = 8;
2121
pub type Tag = u64;
2222
const MAGIC: Tag = Tag::from_ne_bytes(*b"vchordrq");
23-
const VERSION: u64 = 1000;
23+
const VERSION: u64 = 1001;
2424

2525
#[inline(always)]
2626
fn tag(source: &[u8]) -> Tag {

0 commit comments

Comments
 (0)