sequel_pg 1.17.1 → 1.17.2
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/CHANGELOG +4 -0
- data/README.rdoc +1 -1
- data/ext/sequel_pg/sequel_pg.c +3 -3
- metadata +3 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 61a49fada0595f92d8452ff231ff0d44ffadf59a887671c9d86178d957f95f44
|
4
|
+
data.tar.gz: 8969b6f0b9492e2f9edb087b57ef7b13993d61eeaabb9a0291478c1a227448ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7d5f69fd6e5f2a7dd3b067ca423c85ed2d9fc2f3af9ae191a19507ac3635e654699e5dac6c90ba1f910d5619cf8242a039e07752bfccbfed8c2a57a280fe0bb3
|
7
|
+
data.tar.gz: 899259457171fafd01c689f234da55255a06a4408ab7e58bcbdf8df94a409884a46ce3e613a2faabe9fbec350b65188d3d8a3e1821832b74d7ff9d145bbb16ef
|
data/CHANGELOG
CHANGED
data/README.rdoc
CHANGED
@@ -77,7 +77,7 @@ variables to specify the shared library and header directories.
|
|
77
77
|
|
78
78
|
== Running the specs
|
79
79
|
|
80
|
-
sequel_pg is designed to replace a part of Sequel, so it
|
80
|
+
sequel_pg is designed to replace a part of Sequel, so it should be tested
|
81
81
|
using Sequel's specs (the spec_postgres rake task). There is a spec_cov
|
82
82
|
task that assumes you have Sequel checked out at ../sequel, and uses a
|
83
83
|
small spec suite for parts of sequel_pg not covered by Sequel's specs.
|
data/ext/sequel_pg/sequel_pg.c
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
#define SEQUEL_PG_VERSION_INTEGER
|
1
|
+
#define SEQUEL_PG_VERSION_INTEGER 11702
|
2
2
|
|
3
3
|
#include <string.h>
|
4
4
|
#include <stdio.h>
|
@@ -879,7 +879,7 @@ static VALUE spg__array_col_value(char *v, size_t length, VALUE converter, int e
|
|
879
879
|
break;
|
880
880
|
case 17: /* bytea */
|
881
881
|
bi.blob_string = (char *)PQunescapeBytea((unsigned char*)v, &bi.length);
|
882
|
-
rv = rb_ensure(spg_create_Blob, (VALUE)&bi, (VALUE(*)())PQfreemem, (VALUE)bi.blob_string);
|
882
|
+
rv = rb_ensure(spg_create_Blob, (VALUE)&bi, (VALUE(*)(VALUE))PQfreemem, (VALUE)bi.blob_string);
|
883
883
|
break;
|
884
884
|
case 20: /* integer */
|
885
885
|
case 21:
|
@@ -1031,7 +1031,7 @@ static VALUE spg__col_value(VALUE self, PGresult *res, int i, int j, VALUE* colc
|
|
1031
1031
|
break;
|
1032
1032
|
case 17: /* bytea */
|
1033
1033
|
bi.blob_string = (char *)PQunescapeBytea((unsigned char*)v, &bi.length);
|
1034
|
-
rv = rb_ensure(spg_create_Blob, (VALUE)&bi, (VALUE(*)())PQfreemem, (VALUE)bi.blob_string);
|
1034
|
+
rv = rb_ensure(spg_create_Blob, (VALUE)&bi, (VALUE(*)(VALUE))PQfreemem, (VALUE)bi.blob_string);
|
1035
1035
|
break;
|
1036
1036
|
case 20: /* integer */
|
1037
1037
|
case 21:
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sequel_pg
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.17.
|
4
|
+
version: 1.17.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeremy Evans
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-14 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: pg
|
@@ -79,7 +78,6 @@ metadata:
|
|
79
78
|
documentation_uri: https://github.com/jeremyevans/sequel_pg/blob/master/README.rdoc
|
80
79
|
mailing_list_uri: https://github.com/jeremyevans/sequel_pg/discussions
|
81
80
|
source_code_uri: https://github.com/jeremyevans/sequel_pg
|
82
|
-
post_install_message:
|
83
81
|
rdoc_options:
|
84
82
|
- "--quiet"
|
85
83
|
- "--line-numbers"
|
@@ -101,8 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
101
99
|
- !ruby/object:Gem::Version
|
102
100
|
version: '0'
|
103
101
|
requirements: []
|
104
|
-
rubygems_version: 3.
|
105
|
-
signing_key:
|
102
|
+
rubygems_version: 3.6.2
|
106
103
|
specification_version: 4
|
107
104
|
summary: Faster SELECTs when using Sequel with pg
|
108
105
|
test_files: []
|