pg 1.1.3-x86-mingw32 → 1.1.4-x86-mingw32
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 +5 -5
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/History.rdoc +7 -0
- data/Rakefile +2 -2
- data/Rakefile.cross +3 -3
- data/ext/errorcodes.def +4 -0
- data/ext/errorcodes.txt +2 -1
- data/ext/pg.h +5 -0
- data/ext/pg_binary_decoder.c +11 -7
- data/ext/pg_connection.c +8 -4
- data/ext/pg_result.c +3 -1
- data/lib/2.2/pg_ext.so +0 -0
- data/lib/2.3/pg_ext.so +0 -0
- data/lib/2.4/pg_ext.so +0 -0
- data/lib/2.5/pg_ext.so +0 -0
- data/lib/2.6/pg_ext.so +0 -0
- data/lib/libpq.dll +0 -0
- data/lib/pg.rb +1 -1
- data/spec/helpers.rb +7 -8
- data/spec/pg/basic_type_mapping_spec.rb +1 -1
- data/spec/pg/connection_spec.rb +28 -5
- metadata +33 -41
- metadata.gz.sig +0 -0
- data/lib/2.0/pg_ext.so +0 -0
- data/lib/2.1/pg_ext.so +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 24e3292a38761d359f1eb00008e0f4ddb2c5f01b7c29dc007e50218b67ae39fc
|
4
|
+
data.tar.gz: 4f8168a3cc1e65a994df27904e2bca5c9bbec5a19358d0507c62b1002960cac5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 71afc1bc2596d44d1d0dc5341953d23d7cc126da92c6f27fb0cd4294d4e82b9c1957c93fa228e308b70843a3bdd643712780656eae2b227664744d398e95078a
|
7
|
+
data.tar.gz: 3fc9e6e53f3eab4d79a21c2d9dd7d27d1fa97e992309d9028031039927f833df628c7b6e97e36f99444ebbe5dbe5efd706981584e8bf51365cfc0269f4b33390
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/History.rdoc
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
== v1.1.4 [2019-01-08] Michael Granger <ged@FaerieMUD.org>
|
2
|
+
|
3
|
+
- Fix PG::BinaryDecoder::Timestamp on 32 bit systems. # 284
|
4
|
+
- Add new error-codes of PostgreSQL-11.
|
5
|
+
- Add ruby-2.6 support for Windows fat binary gems and remove ruby-2.0 and 2.1.
|
6
|
+
|
7
|
+
|
1
8
|
== v1.1.3 [2018-09-06] Michael Granger <ged@FaerieMUD.org>
|
2
9
|
|
3
10
|
- Revert opimization that was sometimes causing EBADF in rb_wait_for_single_fd().
|
data/Rakefile
CHANGED
@@ -61,7 +61,7 @@ $hoespec = Hoe.spec 'pg' do
|
|
61
61
|
self.developer 'Lars Kanis', 'lars@greiz-reinsdorf.de'
|
62
62
|
|
63
63
|
self.dependency 'rake-compiler', '~> 1.0', :developer
|
64
|
-
self.dependency 'rake-compiler-dock', ['~> 0.
|
64
|
+
self.dependency 'rake-compiler-dock', ['~> 0.7.0'], :developer
|
65
65
|
self.dependency 'hoe-deveiate', '~> 0.9', :developer
|
66
66
|
self.dependency 'hoe-bundler', '~> 1.0', :developer
|
67
67
|
self.dependency 'rspec', '~> 3.5', :developer
|
@@ -184,7 +184,7 @@ end
|
|
184
184
|
|
185
185
|
desc "Update list of server error codes"
|
186
186
|
task :update_error_codes do
|
187
|
-
URL_ERRORCODES_TXT = "http://git.postgresql.org/gitweb/?p=postgresql.git;a=blob_plain;f=src/backend/utils/errcodes.txt;hb=refs/tags/
|
187
|
+
URL_ERRORCODES_TXT = "http://git.postgresql.org/gitweb/?p=postgresql.git;a=blob_plain;f=src/backend/utils/errcodes.txt;hb=refs/tags/REL_11_1"
|
188
188
|
|
189
189
|
ERRORCODES_TXT = "ext/errorcodes.txt"
|
190
190
|
sh "wget #{URL_ERRORCODES_TXT.inspect} -O #{ERRORCODES_TXT.inspect} || curl #{URL_ERRORCODES_TXT.inspect} -o #{ERRORCODES_TXT.inspect}"
|
data/Rakefile.cross
CHANGED
@@ -29,8 +29,8 @@ class CrossLibrary < OpenStruct
|
|
29
29
|
self.host_platform = toolchain
|
30
30
|
|
31
31
|
# Cross-compilation constants
|
32
|
-
self.openssl_version = ENV['OPENSSL_VERSION'] || '1.1.
|
33
|
-
self.postgresql_version = ENV['POSTGRESQL_VERSION'] || '
|
32
|
+
self.openssl_version = ENV['OPENSSL_VERSION'] || '1.1.1a'
|
33
|
+
self.postgresql_version = ENV['POSTGRESQL_VERSION'] || '11.1'
|
34
34
|
|
35
35
|
# Check if symlinks work in the current working directory.
|
36
36
|
# This fails, if rake-compiler-dock is running on a Windows box.
|
@@ -293,6 +293,6 @@ task 'gem:windows' => ['ChangeLog'] do
|
|
293
293
|
mkdir ~/.gem &&
|
294
294
|
(cp build/gem/gem-*.pem ~/.gem/ || true) &&
|
295
295
|
bundle install --local &&
|
296
|
-
rake cross native gem
|
296
|
+
rake cross native gem MAKE="make -j`nproc`"
|
297
297
|
EOT
|
298
298
|
end
|
data/ext/errorcodes.def
CHANGED
@@ -186,6 +186,10 @@
|
|
186
186
|
VALUE klass = define_error_class( "InvalidParameterValue", "22" );
|
187
187
|
register_error_class( "22023", klass );
|
188
188
|
}
|
189
|
+
{
|
190
|
+
VALUE klass = define_error_class( "InvalidPrecedingOrFollowingSize", "22" );
|
191
|
+
register_error_class( "22013", klass );
|
192
|
+
}
|
189
193
|
{
|
190
194
|
VALUE klass = define_error_class( "InvalidRegularExpression", "22" );
|
191
195
|
register_error_class( "2201B", klass );
|
data/ext/errorcodes.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
# errcodes.txt
|
3
3
|
# PostgreSQL error codes
|
4
4
|
#
|
5
|
-
# Copyright (c) 2003-
|
5
|
+
# Copyright (c) 2003-2018, PostgreSQL Global Development Group
|
6
6
|
#
|
7
7
|
# This list serves as the basis for generating source files containing error
|
8
8
|
# codes. It is kept in a common format to make sure all these source files have
|
@@ -177,6 +177,7 @@ Section: Class 22 - Data Exception
|
|
177
177
|
22P06 E ERRCODE_NONSTANDARD_USE_OF_ESCAPE_CHARACTER nonstandard_use_of_escape_character
|
178
178
|
22010 E ERRCODE_INVALID_INDICATOR_PARAMETER_VALUE invalid_indicator_parameter_value
|
179
179
|
22023 E ERRCODE_INVALID_PARAMETER_VALUE invalid_parameter_value
|
180
|
+
22013 E ERRCODE_INVALID_PRECEDING_OR_FOLLOWING_SIZE invalid_preceding_or_following_size
|
180
181
|
2201B E ERRCODE_INVALID_REGULAR_EXPRESSION invalid_regular_expression
|
181
182
|
2201W E ERRCODE_INVALID_ROW_COUNT_IN_LIMIT_CLAUSE invalid_row_count_in_limit_clause
|
182
183
|
2201X E ERRCODE_INVALID_ROW_COUNT_IN_RESULT_OFFSET_CLAUSE invalid_row_count_in_result_offset_clause
|
data/ext/pg.h
CHANGED
@@ -103,6 +103,11 @@ typedef struct {
|
|
103
103
|
|
104
104
|
/* enable/disable guessing size of PGresult's allocated memory */
|
105
105
|
int guess_result_memsize;
|
106
|
+
|
107
|
+
#if defined(_WIN32)
|
108
|
+
/* File descriptor to be used for rb_w32_unwrap_io_handle() */
|
109
|
+
int ruby_sd;
|
110
|
+
#endif
|
106
111
|
} t_pg_connection;
|
107
112
|
|
108
113
|
typedef struct pg_coder t_pg_coder;
|
data/ext/pg_binary_decoder.c
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
* pg_column_map.c - PG::ColumnMap class extension
|
3
|
-
* $Id
|
3
|
+
* $Id$
|
4
4
|
*
|
5
5
|
*/
|
6
6
|
|
@@ -154,7 +154,8 @@ static VALUE
|
|
154
154
|
pg_bin_dec_timestamp(t_pg_coder *conv, const char *val, int len, int tuple, int field, int enc_idx)
|
155
155
|
{
|
156
156
|
int64_t timestamp;
|
157
|
-
|
157
|
+
int64_t sec;
|
158
|
+
int64_t nsec;
|
158
159
|
VALUE t;
|
159
160
|
|
160
161
|
if( len != sizeof(timestamp) ){
|
@@ -171,14 +172,17 @@ pg_bin_dec_timestamp(t_pg_coder *conv, const char *val, int len, int tuple, int
|
|
171
172
|
default:
|
172
173
|
/* PostgreSQL's timestamp is based on year 2000 and Ruby's time is based on 1970.
|
173
174
|
* Adjust the 30 years difference. */
|
174
|
-
|
175
|
-
|
175
|
+
sec = (timestamp / 1000000) + 10957L * 24L * 3600L;
|
176
|
+
nsec = (timestamp % 1000000) * 1000;
|
176
177
|
|
177
|
-
#if (RUBY_API_VERSION_MAJOR > 2 || (RUBY_API_VERSION_MAJOR == 2 && RUBY_API_VERSION_MINOR >= 3)) && defined(NEGATIVE_TIME_T)
|
178
|
+
#if (RUBY_API_VERSION_MAJOR > 2 || (RUBY_API_VERSION_MAJOR == 2 && RUBY_API_VERSION_MINOR >= 3)) && defined(NEGATIVE_TIME_T) && defined(SIZEOF_TIME_T) && SIZEOF_TIME_T >= 8
|
178
179
|
/* Fast path for time conversion */
|
179
|
-
|
180
|
+
{
|
181
|
+
struct timespec ts = {sec, nsec};
|
182
|
+
t = rb_time_timespec_new(&ts, conv->flags & PG_CODER_TIMESTAMP_APP_LOCAL ? INT_MAX : INT_MAX-1);
|
183
|
+
}
|
180
184
|
#else
|
181
|
-
t = rb_funcall(rb_cTime, rb_intern("at"), 2, LL2NUM(
|
185
|
+
t = rb_funcall(rb_cTime, rb_intern("at"), 2, LL2NUM(sec), LL2NUM(nsec / 1000));
|
182
186
|
if( !(conv->flags & PG_CODER_TIMESTAMP_APP_LOCAL) ) {
|
183
187
|
t = rb_funcall(t, rb_intern("utc"), 0);
|
184
188
|
}
|
data/ext/pg_connection.c
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
* pg_connection.c - PG::Connection class extension
|
3
|
-
* $Id
|
3
|
+
* $Id$
|
4
4
|
*
|
5
5
|
*/
|
6
6
|
|
@@ -85,8 +85,7 @@ pgconn_close_socket_io( VALUE self )
|
|
85
85
|
|
86
86
|
if ( RTEST(socket_io) ) {
|
87
87
|
#if defined(_WIN32)
|
88
|
-
|
89
|
-
if( rb_w32_unwrap_io_handle(ruby_sd) ){
|
88
|
+
if( rb_w32_unwrap_io_handle(this->ruby_sd) ){
|
90
89
|
rb_raise(rb_eConnectionBad, "Could not unwrap win32 socket handle");
|
91
90
|
}
|
92
91
|
#endif
|
@@ -165,6 +164,10 @@ pgconn_gc_mark( t_pg_connection *this )
|
|
165
164
|
static void
|
166
165
|
pgconn_gc_free( t_pg_connection *this )
|
167
166
|
{
|
167
|
+
#if defined(_WIN32)
|
168
|
+
if ( RTEST(this->socket_io) )
|
169
|
+
rb_w32_unwrap_io_handle( this->ruby_sd );
|
170
|
+
#endif
|
168
171
|
if (this->pgconn != NULL)
|
169
172
|
PQfinish( this->pgconn );
|
170
173
|
|
@@ -894,6 +897,7 @@ pgconn_socket_io(VALUE self)
|
|
894
897
|
|
895
898
|
#ifdef _WIN32
|
896
899
|
ruby_sd = rb_w32_wrap_io_handle((HANDLE)(intptr_t)sd, O_RDWR|O_BINARY|O_NOINHERIT);
|
900
|
+
this->ruby_sd = ruby_sd;
|
897
901
|
#else
|
898
902
|
ruby_sd = sd;
|
899
903
|
#endif
|
@@ -961,7 +965,7 @@ static VALUE pgconn_exec_params( int, VALUE *, VALUE );
|
|
961
965
|
* conn.exec(sql) {|pg_result| block }
|
962
966
|
*
|
963
967
|
* Sends SQL query request specified by _sql_ to PostgreSQL.
|
964
|
-
*
|
968
|
+
* On success, it returns a PG::Result instance with all result rows and columns.
|
965
969
|
* On failure, it raises a PG::Error.
|
966
970
|
*
|
967
971
|
* For backward compatibility, if you pass more than one parameter to this method,
|
data/ext/pg_result.c
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
* pg_result.c - PG::Result class extension
|
3
|
-
* $Id
|
3
|
+
* $Id$
|
4
4
|
*
|
5
5
|
*/
|
6
6
|
|
@@ -419,6 +419,8 @@ static void pgresult_init_fnames(VALUE self)
|
|
419
419
|
*
|
420
420
|
* The class to represent the query result tuples (rows).
|
421
421
|
* An instance of this class is created as the result of every query.
|
422
|
+
* All result rows and columns are stored in a memory block attached to the PG::Result object.
|
423
|
+
* Whenever a value is accessed it is casted to a Ruby object by the assigned #type_map .
|
422
424
|
*
|
423
425
|
* Since pg-1.1 the amount of memory in use by a PG::Result object is estimated and passed to ruby's garbage collector.
|
424
426
|
* You can invoke the #clear method to force deallocation of memory of the instance when finished with the result for better memory performance.
|
data/lib/2.2/pg_ext.so
CHANGED
Binary file
|
data/lib/2.3/pg_ext.so
CHANGED
Binary file
|
data/lib/2.4/pg_ext.so
CHANGED
Binary file
|
data/lib/2.5/pg_ext.so
CHANGED
Binary file
|
data/lib/2.6/pg_ext.so
ADDED
Binary file
|
data/lib/libpq.dll
CHANGED
Binary file
|
data/lib/pg.rb
CHANGED
data/spec/helpers.rb
CHANGED
@@ -198,8 +198,8 @@ module PG::TestingHelpers
|
|
198
198
|
@test_pgdata = TEST_DIRECTORY + 'data'
|
199
199
|
@test_pgdata.mkpath
|
200
200
|
|
201
|
-
|
202
|
-
ENV['PGPORT']
|
201
|
+
ENV['PGPORT'] ||= "54321"
|
202
|
+
@port = ENV['PGPORT'].to_i
|
203
203
|
ENV['PGHOST'] = 'localhost'
|
204
204
|
@conninfo = "host=localhost port=#{@port} dbname=test"
|
205
205
|
|
@@ -319,20 +319,19 @@ module PG::TestingHelpers
|
|
319
319
|
return ConnStillUsableMatcher.new
|
320
320
|
end
|
321
321
|
|
322
|
-
def wait_for_polling_ok(conn)
|
323
|
-
|
324
|
-
status = conn.connect_poll
|
322
|
+
def wait_for_polling_ok(conn, meth = :connect_poll)
|
323
|
+
status = conn.send(meth)
|
325
324
|
|
326
325
|
while status != PG::PGRES_POLLING_OK
|
327
326
|
if status == PG::PGRES_POLLING_READING
|
328
|
-
select( [
|
327
|
+
select( [conn.socket_io], [], [], 5.0 ) or
|
329
328
|
raise "Asynchronous connection timed out!"
|
330
329
|
|
331
330
|
elsif status == PG::PGRES_POLLING_WRITING
|
332
|
-
select( [], [
|
331
|
+
select( [], [conn.socket_io], [], 5.0 ) or
|
333
332
|
raise "Asynchronous connection timed out!"
|
334
333
|
end
|
335
|
-
status = conn.
|
334
|
+
status = conn.send(meth)
|
336
335
|
end
|
337
336
|
end
|
338
337
|
|
@@ -62,7 +62,7 @@ describe 'Basic type mapping' do
|
|
62
62
|
it "should do bigdecimal param encoding" do
|
63
63
|
large = ('123456790'*10) << '.' << ('012345679')
|
64
64
|
res = @conn.exec_params( "SELECT $1::numeric,$2::numeric",
|
65
|
-
[BigDecimal
|
65
|
+
[BigDecimal('1'), BigDecimal(large)], nil, basic_type_mapping )
|
66
66
|
|
67
67
|
expect( res.values ).to eq( [
|
68
68
|
[ "1.0", large ],
|
data/spec/pg/connection_spec.rb
CHANGED
@@ -238,12 +238,27 @@ describe PG::Connection do
|
|
238
238
|
# newly established connection is probably distinct from the previous one.
|
239
239
|
ios.each(&:close)
|
240
240
|
conn.reset_start
|
241
|
-
wait_for_polling_ok(conn)
|
241
|
+
wait_for_polling_ok(conn, :reset_poll)
|
242
242
|
|
243
243
|
# The new connection should work even when the file descriptor has changed.
|
244
|
-
|
244
|
+
conn.send_query("SELECT 1")
|
245
|
+
res = wait_for_query_result(conn)
|
246
|
+
expect( res.values ).to eq([["1"]])
|
247
|
+
|
245
248
|
conn.close
|
246
249
|
end
|
250
|
+
|
251
|
+
it "should properly close a socket IO when GC'ed" do
|
252
|
+
# This results in
|
253
|
+
# Errno::ENOTSOCK: An operation was attempted on something that is not a socket.
|
254
|
+
# on Windows when rb_w32_unwrap_io_handle() isn't called in pgconn_gc_free().
|
255
|
+
5.times do
|
256
|
+
conn = described_class.connect( @conninfo )
|
257
|
+
conn.socket_io.close
|
258
|
+
end
|
259
|
+
GC.start
|
260
|
+
IO.pipe.each(&:close)
|
261
|
+
end
|
247
262
|
end
|
248
263
|
|
249
264
|
it "raises proper error when sending fails" do
|
@@ -264,7 +279,7 @@ describe PG::Connection do
|
|
264
279
|
expect( @conn.db ).to eq( "test" )
|
265
280
|
expect( @conn.user ).to be_a_kind_of( String )
|
266
281
|
expect( @conn.pass ).to eq( "" )
|
267
|
-
expect( @conn.port ).to eq(
|
282
|
+
expect( @conn.port ).to eq( @port )
|
268
283
|
expect( @conn.tty ).to eq( "" )
|
269
284
|
expect( @conn.options ).to eq( "" )
|
270
285
|
end
|
@@ -750,7 +765,7 @@ describe PG::Connection do
|
|
750
765
|
it "can return the default connection options as a Hash" do
|
751
766
|
expect( described_class.conndefaults_hash ).to be_a( Hash )
|
752
767
|
expect( described_class.conndefaults_hash ).to include( :user, :password, :dbname, :host, :port )
|
753
|
-
expect( ['5432', '54321'] ).to include( described_class.conndefaults_hash[:port] )
|
768
|
+
expect( ['5432', '54321', @port.to_s] ).to include( described_class.conndefaults_hash[:port] )
|
754
769
|
expect( @conn.conndefaults_hash ).to eq( described_class.conndefaults_hash )
|
755
770
|
end
|
756
771
|
|
@@ -1140,8 +1155,16 @@ describe PG::Connection do
|
|
1140
1155
|
expect( ping ).to eq( PG::PQPING_NO_RESPONSE )
|
1141
1156
|
end
|
1142
1157
|
|
1143
|
-
it "returns
|
1158
|
+
it "returns error when ping connection arguments are wrong" do
|
1144
1159
|
ping = described_class.ping('localhost', 'localhost', nil, nil, :test, nil, nil)
|
1160
|
+
expect( ping ).to_not eq( PG::PQPING_OK )
|
1161
|
+
end
|
1162
|
+
|
1163
|
+
it "returns correct response when ping connection arguments are wrong" do
|
1164
|
+
ping = described_class.ping(
|
1165
|
+
:host => 'localhost',
|
1166
|
+
:invalid_option => 9999,
|
1167
|
+
:dbname => :test)
|
1145
1168
|
expect( ping ).to eq( PG::PQPING_NO_ATTEMPT )
|
1146
1169
|
end
|
1147
1170
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pg
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.4
|
5
5
|
platform: x86-mingw32
|
6
6
|
authors:
|
7
7
|
- Michael Granger
|
@@ -11,32 +11,31 @@ bindir: bin
|
|
11
11
|
cert_chain:
|
12
12
|
- |
|
13
13
|
-----BEGIN CERTIFICATE-----
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
+
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
OMKv6pWsoS81vw5KAGBmfX8nht/Py90DQrbRvakATGI=
|
14
|
+
MIIENDCCApygAwIBAgIBATANBgkqhkiG9w0BAQsFADAiMSAwHgYDVQQDDBdnZWQv
|
15
|
+
REM9RmFlcmllTVVEL0RDPW9yZzAeFw0xODExMjAxODI5NTlaFw0xOTExMjAxODI5
|
16
|
+
NTlaMCIxIDAeBgNVBAMMF2dlZC9EQz1GYWVyaWVNVUQvREM9b3JnMIIBojANBgkq
|
17
|
+
hkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAvyVhkRzvlEs0fe7145BYLfN6njX9ih5H
|
18
|
+
L60U0p0euIurpv84op9CNKF9tx+1WKwyQvQP7qFGuZxkSUuWcP/sFhDXL1lWUuIl
|
19
|
+
M4uHbGCRmOshDrF4dgnBeOvkHr1fIhPlJm5FO+Vew8tSQmlDsosxLUx+VB7DrVFO
|
20
|
+
5PU2AEbf04GGSrmqADGWXeaslaoRdb1fu/0M5qfPTRn5V39sWD9umuDAF9qqil/x
|
21
|
+
Sl6phTvgBrG8GExHbNZpLARd3xrBYLEFsX7RvBn2UPfgsrtvpdXjsHGfpT3IPN+B
|
22
|
+
vQ66lts4alKC69TE5cuKasWBm+16A4aEe3XdZBRNmtOu/g81gvwA7fkJHKllJuaI
|
23
|
+
dXzdHqq+zbGZVSQ7pRYHYomD0IiDe1DbIouFnPWmagaBnGHwXkDT2bKKP+s2v21m
|
24
|
+
ozilJg4aar2okb/RA6VS87o+d7g6LpDDMMQjH4G9OPnJENLdhu8KnPw/ivSVvQw7
|
25
|
+
N2I4L/ZOIe2DIVuYH7aLHfjZDQv/mNgpAgMBAAGjdTBzMAkGA1UdEwQCMAAwCwYD
|
26
|
+
VR0PBAQDAgSwMB0GA1UdDgQWBBRyjf55EbrHagiRLqt5YAd3yb8k4DAcBgNVHREE
|
27
|
+
FTATgRFnZWRARmFlcmllTVVELm9yZzAcBgNVHRIEFTATgRFnZWRARmFlcmllTVVE
|
28
|
+
Lm9yZzANBgkqhkiG9w0BAQsFAAOCAYEAP9Ffkvg4e8CjIWi8SykQ8oJSS8jbmbgF
|
29
|
+
abke3vXWLG6V9kFiObuJd5wZRBluJANu7bEtjgc3fFaGVP2XxVdCpVjNbmMDg4Qp
|
30
|
+
ovvczP53X6pQP2RSZgxF6Lblvy8y11RziUTVRG/Z2aJHsElo6gI7vQznE/OSDrhC
|
31
|
+
gEhr8uaIUt7D+HZWRbU0+MkKPpL5uMqaFuJbqXEvSwPTuUuYkDfNfsjQO7ruWBac
|
32
|
+
bxHCrvpZ6Tijc0nrlyXi6gPOCLeaqhau2xFnlvKgELwsGYSoKBJyDwqtQ5kwrOlU
|
33
|
+
tkSyLrfZ+RZcH535Hyvif7ZxB0v5OxXXoec+N2vrUsEUMRDL9dg4/WFdN8hIOixF
|
34
|
+
3IPKpZ1ho0Ya5q7yhygtBK9/NBFHw+nbJjcltfPDBXleRe8u73gnQo8AZIhStYSP
|
35
|
+
v4qqqa27Bs468d6SoPxjSm8a2mM9HZ4OdWhq4tFsbTeXDVquCfi64OTEaTt2xQdR
|
36
|
+
JnC4lpJfCP6aCXa5h2XAQfPSH636cQap
|
38
37
|
-----END CERTIFICATE-----
|
39
|
-
date:
|
38
|
+
date: 2019-01-09 00:00:00.000000000 Z
|
40
39
|
dependencies:
|
41
40
|
- !ruby/object:Gem::Dependency
|
42
41
|
name: hoe-mercurial
|
@@ -100,20 +99,14 @@ dependencies:
|
|
100
99
|
requirements:
|
101
100
|
- - "~>"
|
102
101
|
- !ruby/object:Gem::Version
|
103
|
-
version:
|
104
|
-
- - ">="
|
105
|
-
- !ruby/object:Gem::Version
|
106
|
-
version: 0.6.2
|
102
|
+
version: 0.7.0
|
107
103
|
type: :development
|
108
104
|
prerelease: false
|
109
105
|
version_requirements: !ruby/object:Gem::Requirement
|
110
106
|
requirements:
|
111
107
|
- - "~>"
|
112
108
|
- !ruby/object:Gem::Version
|
113
|
-
version:
|
114
|
-
- - ">="
|
115
|
-
- !ruby/object:Gem::Version
|
116
|
-
version: 0.6.2
|
109
|
+
version: 0.7.0
|
117
110
|
- !ruby/object:Gem::Dependency
|
118
111
|
name: hoe-bundler
|
119
112
|
requirement: !ruby/object:Gem::Requirement
|
@@ -162,14 +155,14 @@ dependencies:
|
|
162
155
|
requirements:
|
163
156
|
- - "~>"
|
164
157
|
- !ruby/object:Gem::Version
|
165
|
-
version: '3.
|
158
|
+
version: '3.17'
|
166
159
|
type: :development
|
167
160
|
prerelease: false
|
168
161
|
version_requirements: !ruby/object:Gem::Requirement
|
169
162
|
requirements:
|
170
163
|
- - "~>"
|
171
164
|
- !ruby/object:Gem::Version
|
172
|
-
version: '3.
|
165
|
+
version: '3.17'
|
173
166
|
description: |-
|
174
167
|
Pg is the Ruby interface to the {PostgreSQL RDBMS}[http://www.postgresql.org/].
|
175
168
|
|
@@ -271,12 +264,11 @@ files:
|
|
271
264
|
- ext/vc/pg.sln
|
272
265
|
- ext/vc/pg_18/pg.vcproj
|
273
266
|
- ext/vc/pg_19/pg_19.vcproj
|
274
|
-
- lib/2.0/pg_ext.so
|
275
|
-
- lib/2.1/pg_ext.so
|
276
267
|
- lib/2.2/pg_ext.so
|
277
268
|
- lib/2.3/pg_ext.so
|
278
269
|
- lib/2.4/pg_ext.so
|
279
270
|
- lib/2.5/pg_ext.so
|
271
|
+
- lib/2.6/pg_ext.so
|
280
272
|
- lib/libpq.dll
|
281
273
|
- lib/pg.rb
|
282
274
|
- lib/pg/basic_type_mapping.rb
|
@@ -320,10 +312,10 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
320
312
|
requirements:
|
321
313
|
- - ">="
|
322
314
|
- !ruby/object:Gem::Version
|
323
|
-
version: '2.
|
315
|
+
version: '2.2'
|
324
316
|
- - "<"
|
325
317
|
- !ruby/object:Gem::Version
|
326
|
-
version:
|
318
|
+
version: 2.7.dev
|
327
319
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
328
320
|
requirements:
|
329
321
|
- - ">="
|
@@ -331,7 +323,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
331
323
|
version: '0'
|
332
324
|
requirements: []
|
333
325
|
rubyforge_project:
|
334
|
-
rubygems_version: 2.
|
326
|
+
rubygems_version: 2.7.8
|
335
327
|
signing_key:
|
336
328
|
specification_version: 4
|
337
329
|
summary: Pg is the Ruby interface to the {PostgreSQL RDBMS}[http://www.postgresql.org/]
|
metadata.gz.sig
CHANGED
Binary file
|
data/lib/2.0/pg_ext.so
DELETED
Binary file
|
data/lib/2.1/pg_ext.so
DELETED
Binary file
|