pg_party 1.8.0 → 1.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/lib/pg_party/adapter_decorator.rb +1 -1
- data/lib/pg_party/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4eb524581674249ee233d440f5ac3bf7e1db01fc16126418193cf6a5e92642ce
|
4
|
+
data.tar.gz: c8457bcfeb5d21712111ec36f20f868d0693ac9c0192cc8d3264e305aec13784
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 972efbf2f34c6c4e0164d411a1bb706bf358dba121a16b2c013d3f3247031156e70f20e87e540e9c35c33ce19b469fcecd48b01f4c63a63c7373fc8b34f752b3
|
7
|
+
data.tar.gz: 48b9ec58dc82e2ca4f0d43e1b5cf3f962a54b34576d4d0208e00846d4abbdb596c56c7c494e658f738a5bd863324ca70e2ca6cfd9c42b2d69f02b27c270e32ac
|
data/README.md
CHANGED
@@ -25,9 +25,9 @@
|
|
25
25
|
|
26
26
|
This gem is tested against:
|
27
27
|
|
28
|
-
- Rails:
|
29
|
-
- Ruby: 3.
|
30
|
-
- PostgreSQL:
|
28
|
+
- Rails: 7.0, 7.1, 7.2, 8.0
|
29
|
+
- Ruby: 3.2, latest (currently 3.3 at the time of this commit)
|
30
|
+
- PostgreSQL: 13, 14, 15, 16, 17
|
31
31
|
|
32
32
|
## Future Work
|
33
33
|
|
@@ -155,7 +155,7 @@ module PgParty
|
|
155
155
|
|
156
156
|
# Postgres limits index name to 63 bytes (characters). We will use 8 characters for a `_random_suffix`
|
157
157
|
# on partitions to ensure no conflicts, leaving 55 chars for the specified index name
|
158
|
-
raise ArgumentError 'index name is too long - must be 55 characters or fewer' if index_name.length > 55
|
158
|
+
raise ArgumentError, 'index name is too long - must be 55 characters or fewer' if index_name.length > 55
|
159
159
|
|
160
160
|
recursive_add_index(
|
161
161
|
table_name: table_name,
|
data/lib/pg_party/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pg_party
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Krage
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-11-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -16,20 +16,20 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '7.0'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: '8.
|
22
|
+
version: '8.1'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '
|
29
|
+
version: '7.0'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: '8.
|
32
|
+
version: '8.1'
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: parallel
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|