From 7579abbb9ea839ac80460a8dc18ea1043582f5d8 Mon Sep 17 00:00:00 2001 From: Tomas Vondra Date: Sun, 22 Dec 2024 20:27:04 +0100 Subject: [PATCH] Stamp 1.0.3 --- META.json | 6 +++--- Makefile | 2 +- sequential_uuids--1.0.2--1.0.3.sql | 0 sequential_uuids.control | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 sequential_uuids--1.0.2--1.0.3.sql diff --git a/META.json b/META.json index d11044a..74d9bc6 100644 --- a/META.json +++ b/META.json @@ -2,7 +2,7 @@ "name": "sequential_uuids", "abstract": "UUID generators with sequential patterns, which helps to reduce random I/O patterns associated with regular entirely-random UUID.", "description": "Regular random UUIDs are distributed uniformly over the whole range of possible values. This results in poor locality when inserting data into indexes - all index leaf pages are equally likely to be hit, forcing the whole index into memory. With small indexes that's fine, but once the index size exceeds shared buffers (or RAM), the cache hit ratio quickly deteriorates. The main goal of the two generators implemented by this extension, is generating UUIDS in a more sequential pattern, but without reducing the randomness too much (which could increase the probability of collision and predictability of the generated UUIDs). This idea is not new, and is described as", - "version": "1.0.2", + "version": "1.0.3", "maintainer": "Tomas Vondra ", "license": "bsd", "prereqs": { @@ -14,9 +14,9 @@ }, "provides": { "sequential_uuids": { - "file": "sequential_uuids--1.0.1--1.0.2.sql", + "file": "sequential_uuids--1.0.2--1.0.3.sql", "docfile" : "README.md", - "version": "1.0.2" + "version": "1.0.3" } }, "resources": { diff --git a/Makefile b/Makefile index 90d9999..32123d0 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ MODULE_big = sequential_uuids OBJS = sequential_uuids.o EXTENSION = sequential_uuids -DATA = sequential_uuids--1.0.1.sql sequential_uuids--1.0.1--1.0.2.sql +DATA = sequential_uuids--1.0.1.sql sequential_uuids--1.0.1--1.0.2.sql sequential_uuids--1.0.2--1.0.3.sql TESTS = $(wildcard test/sql/*.sql) REGRESS = $(patsubst test/sql/%.sql,%,$(TESTS)) diff --git a/sequential_uuids--1.0.2--1.0.3.sql b/sequential_uuids--1.0.2--1.0.3.sql new file mode 100644 index 0000000..e69de29 diff --git a/sequential_uuids.control b/sequential_uuids.control index da2693d..eb99a55 100644 --- a/sequential_uuids.control +++ b/sequential_uuids.control @@ -1,5 +1,5 @@ # sequential UUID generators comment = 'generator of sequential UUIDs' -default_version = '1.0.2' +default_version = '1.0.3' module_pathname = '$libdir/sequential_uuids' relocatable = true