pg 1.0.0 → 1.5.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/.appveyor.yml +42 -0
- data/.gems +6 -0
- data/.github/workflows/binary-gems.yml +117 -0
- data/.github/workflows/source-gem.yml +141 -0
- data/.gitignore +22 -0
- data/.hgsigs +34 -0
- data/.hgtags +41 -0
- data/.irbrc +23 -0
- data/.pryrc +23 -0
- data/.tm_properties +21 -0
- data/.travis.yml +49 -0
- data/Gemfile +14 -0
- data/History.md +884 -0
- data/Manifest.txt +8 -3
- data/README-Windows.rdoc +4 -4
- data/README.ja.md +300 -0
- data/README.md +286 -0
- data/Rakefile +38 -138
- data/Rakefile.cross +63 -63
- data/certs/ged.pem +24 -0
- data/certs/larskanis-2022.pem +26 -0
- data/certs/larskanis-2023.pem +24 -0
- data/ext/errorcodes.def +80 -0
- data/ext/errorcodes.rb +1 -1
- data/ext/errorcodes.txt +22 -2
- data/ext/extconf.rb +106 -25
- data/ext/gvl_wrappers.c +4 -0
- data/ext/gvl_wrappers.h +23 -0
- data/ext/pg.c +213 -155
- data/ext/pg.h +89 -23
- data/ext/pg_binary_decoder.c +162 -16
- data/ext/pg_binary_encoder.c +238 -13
- data/ext/pg_coder.c +159 -35
- data/ext/pg_connection.c +1557 -972
- data/ext/pg_copy_coder.c +364 -38
- data/ext/pg_errors.c +1 -1
- data/ext/pg_record_coder.c +522 -0
- data/ext/pg_result.c +708 -215
- data/ext/pg_text_decoder.c +627 -43
- data/ext/pg_text_encoder.c +206 -62
- data/ext/pg_tuple.c +572 -0
- data/ext/pg_type_map.c +45 -11
- data/ext/pg_type_map_all_strings.c +21 -7
- data/ext/pg_type_map_by_class.c +59 -27
- data/ext/pg_type_map_by_column.c +80 -37
- data/ext/pg_type_map_by_mri_type.c +49 -20
- data/ext/pg_type_map_by_oid.c +62 -29
- data/ext/pg_type_map_in_ruby.c +56 -22
- data/ext/{util.c → pg_util.c} +12 -12
- data/ext/{util.h → pg_util.h} +2 -2
- data/lib/pg/basic_type_map_based_on_result.rb +67 -0
- data/lib/pg/basic_type_map_for_queries.rb +198 -0
- data/lib/pg/basic_type_map_for_results.rb +104 -0
- data/lib/pg/basic_type_registry.rb +299 -0
- data/lib/pg/binary_decoder/date.rb +9 -0
- data/lib/pg/binary_decoder/timestamp.rb +26 -0
- data/lib/pg/binary_encoder/timestamp.rb +20 -0
- data/lib/pg/coder.rb +36 -13
- data/lib/pg/connection.rb +749 -70
- data/lib/pg/exceptions.rb +16 -2
- data/lib/pg/result.rb +14 -2
- data/lib/pg/text_decoder/date.rb +18 -0
- data/lib/pg/text_decoder/inet.rb +9 -0
- data/lib/pg/text_decoder/json.rb +14 -0
- data/lib/pg/text_decoder/numeric.rb +9 -0
- data/lib/pg/text_decoder/timestamp.rb +30 -0
- data/lib/pg/text_encoder/date.rb +12 -0
- data/lib/pg/text_encoder/inet.rb +28 -0
- data/lib/pg/text_encoder/json.rb +14 -0
- data/lib/pg/text_encoder/numeric.rb +9 -0
- data/lib/pg/text_encoder/timestamp.rb +24 -0
- data/lib/pg/tuple.rb +30 -0
- data/lib/pg/type_map_by_column.rb +3 -2
- data/lib/pg/version.rb +4 -0
- data/lib/pg.rb +96 -39
- data/misc/openssl-pg-segfault.rb +31 -0
- data/misc/postgres/History.txt +9 -0
- data/misc/postgres/Manifest.txt +5 -0
- data/misc/postgres/README.txt +21 -0
- data/misc/postgres/Rakefile +21 -0
- data/misc/postgres/lib/postgres.rb +16 -0
- data/misc/ruby-pg/History.txt +9 -0
- data/misc/ruby-pg/Manifest.txt +5 -0
- data/misc/ruby-pg/README.txt +21 -0
- data/misc/ruby-pg/Rakefile +21 -0
- data/misc/ruby-pg/lib/ruby/pg.rb +16 -0
- data/pg.gemspec +34 -0
- data/rakelib/task_extension.rb +46 -0
- data/sample/array_insert.rb +20 -0
- data/sample/async_api.rb +102 -0
- data/sample/async_copyto.rb +39 -0
- data/sample/async_mixed.rb +56 -0
- data/sample/check_conn.rb +21 -0
- data/sample/copydata.rb +71 -0
- data/sample/copyfrom.rb +81 -0
- data/sample/copyto.rb +19 -0
- data/sample/cursor.rb +21 -0
- data/sample/disk_usage_report.rb +177 -0
- data/sample/issue-119.rb +94 -0
- data/sample/losample.rb +69 -0
- data/sample/minimal-testcase.rb +17 -0
- data/sample/notify_wait.rb +72 -0
- data/sample/pg_statistics.rb +285 -0
- data/sample/replication_monitor.rb +222 -0
- data/sample/test_binary_values.rb +33 -0
- data/sample/wal_shipper.rb +434 -0
- data/sample/warehouse_partitions.rb +311 -0
- data/translation/.po4a-version +7 -0
- data/translation/po/all.pot +936 -0
- data/translation/po/ja.po +1036 -0
- data/translation/po4a.cfg +12 -0
- data.tar.gz.sig +0 -0
- metadata +147 -219
- metadata.gz.sig +0 -0
- data/ChangeLog +0 -6595
- data/History.rdoc +0 -422
- data/README.ja.rdoc +0 -14
- data/README.rdoc +0 -167
- data/lib/pg/basic_type_mapping.rb +0 -426
- data/lib/pg/constants.rb +0 -11
- data/lib/pg/text_decoder.rb +0 -51
- data/lib/pg/text_encoder.rb +0 -35
- data/spec/data/expected_trace.out +0 -26
- data/spec/data/random_binary_data +0 -0
- data/spec/helpers.rb +0 -348
- data/spec/pg/basic_type_mapping_spec.rb +0 -305
- data/spec/pg/connection_spec.rb +0 -1719
- data/spec/pg/result_spec.rb +0 -456
- data/spec/pg/type_map_by_class_spec.rb +0 -138
- data/spec/pg/type_map_by_column_spec.rb +0 -222
- data/spec/pg/type_map_by_mri_type_spec.rb +0 -136
- data/spec/pg/type_map_by_oid_spec.rb +0 -149
- data/spec/pg/type_map_in_ruby_spec.rb +0 -164
- data/spec/pg/type_map_spec.rb +0 -22
- data/spec/pg/type_spec.rb +0 -777
- data/spec/pg_spec.rb +0 -50
@@ -0,0 +1,12 @@
|
|
1
|
+
[po_directory] po
|
2
|
+
|
3
|
+
[options] --master-charset UTF-8 \
|
4
|
+
--localized-charset UTF-8 \
|
5
|
+
--master-language en \
|
6
|
+
--option markdown \
|
7
|
+
--keep 0 \
|
8
|
+
--package-name Pg \
|
9
|
+
--package-version 1.4.6 \
|
10
|
+
--copyright-holder 'Pg authors'
|
11
|
+
|
12
|
+
[type:text] ../README.md ja:../README.ja.md
|
data.tar.gz.sig
CHANGED
Binary file
|
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.
|
4
|
+
version: 1.5.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Granger
|
@@ -11,185 +11,29 @@ 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
|
-
DuEzbEMfaOUYjU9RuB48vr4q8yRft0ww+3jq5iwNkrX1buL2pwBbyvgms6D/BV41
|
33
|
-
MaTVMjsHqJUwU2xVfhGtxGAWAer5S1HGYHkbio6mGVtiie0uWjmnzi7ppIlMr48a
|
34
|
-
7BNTsoZ+/JRk3iQWmmNsyFT7xfqBKye7cH11BX8V8P4MeGB5YWlMI+Myj5DZY3fQ
|
35
|
-
st2AGD4rb1l0ia7PfubcBThSIdz61eCb8gRi/RiZZwb3/7+eyEncLJzt2Ob9fGSF
|
36
|
-
X0qdrKi+2aZZ0NGuFj9AItBsVmAvkBGIpX4TEKQp5haEbPpmaqO5nIIhV26PXmyT
|
37
|
-
OMKv6pWsoS81vw5KAGBmfX8nht/Py90DQrbRvakATGI=
|
14
|
+
MIIDLjCCAhagAwIBAgIBCzANBgkqhkiG9w0BAQsFADA9MQ4wDAYDVQQDDAVrYW5p
|
15
|
+
czEXMBUGCgmSJomT8ixkARkWB2NvbWNhcmQxEjAQBgoJkiaJk/IsZAEZFgJkZTAe
|
16
|
+
Fw0yMzA0MjgwOTI0NDhaFw0yNDA0MjcwOTI0NDhaMD0xDjAMBgNVBAMMBWthbmlz
|
17
|
+
MRcwFQYKCZImiZPyLGQBGRYHY29tY2FyZDESMBAGCgmSJomT8ixkARkWAmRlMIIB
|
18
|
+
IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApop+rNmg35bzRugZ21VMGqI6
|
19
|
+
HGzPLO4VHYncWn/xmgPU/ZMcZdfj6MzIaZJ/czXyt4eHpBk1r8QOV3gBXnRXEjVW
|
20
|
+
9xi+EdVOkTV2/AVFKThcbTAQGiF/bT1n2M+B1GTybRzMg6hyhOJeGPqIhLfJEpxn
|
21
|
+
lJi4+ENAVT4MpqHEAGB8yFoPC0GqiOHQsdHxQV3P3c2OZqG+yJey74QtwA2tLcLn
|
22
|
+
Q53c63+VLGsOjODl1yPn/2ejyq8qWu6ahfTxiIlSar2UbwtaQGBDFdb2CXgEufXT
|
23
|
+
L7oaPxlmj+Q2oLOfOnInd2Oxop59HoJCQPsg8f921J43NCQGA8VHK6paxIRDLQID
|
24
|
+
AQABozkwNzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQUvgTdT7fe
|
25
|
+
x17ugO3IOsjEJwW7KP4wDQYJKoZIhvcNAQELBQADggEBACAxNXwfMGG7paZjnG/c
|
26
|
+
smdi/ocW2GmCNtILaSzDZqlD5LoA68MiO7u5vwWyBaDJ6giUB330VJoGRbWMxvxN
|
27
|
+
JU6Bnwa4yYp9YtF91wYIi7FXwIrCPKd9bk3bf4M5wECdsv+zvVceq2zRXqD7fci8
|
28
|
+
1LRG8ort/f4TgaT7B4aNwOaabA2UT6u0FGeglqxLkhir86MY3QQyBfJZUoTKWGkz
|
29
|
+
S9a7GXsYpe+8HMOaE4+SZp8SORKPgATND5m/4VdzuO59VXjE5UP7QpXigbxAt7H7
|
30
|
+
ciK5Du2ZDhowmWzZwNzR7VvVmfAK6RQJlRB03VkkQRWGld5yApOrYDne6WbD8kE0
|
31
|
+
uM8=
|
38
32
|
-----END CERTIFICATE-----
|
39
|
-
date:
|
40
|
-
dependencies:
|
41
|
-
|
42
|
-
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - "~>"
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '1.4'
|
48
|
-
type: :development
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - "~>"
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '1.4'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: hoe-deveiate
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - "~>"
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '0.9'
|
62
|
-
type: :development
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - "~>"
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '0.9'
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
name: hoe-highline
|
71
|
-
requirement: !ruby/object:Gem::Requirement
|
72
|
-
requirements:
|
73
|
-
- - "~>"
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
version: '0.2'
|
76
|
-
type: :development
|
77
|
-
prerelease: false
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
79
|
-
requirements:
|
80
|
-
- - "~>"
|
81
|
-
- !ruby/object:Gem::Version
|
82
|
-
version: '0.2'
|
83
|
-
- !ruby/object:Gem::Dependency
|
84
|
-
name: rake-compiler
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
86
|
-
requirements:
|
87
|
-
- - "~>"
|
88
|
-
- !ruby/object:Gem::Version
|
89
|
-
version: '1.0'
|
90
|
-
type: :development
|
91
|
-
prerelease: false
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
93
|
-
requirements:
|
94
|
-
- - "~>"
|
95
|
-
- !ruby/object:Gem::Version
|
96
|
-
version: '1.0'
|
97
|
-
- !ruby/object:Gem::Dependency
|
98
|
-
name: rake-compiler-dock
|
99
|
-
requirement: !ruby/object:Gem::Requirement
|
100
|
-
requirements:
|
101
|
-
- - "~>"
|
102
|
-
- !ruby/object:Gem::Version
|
103
|
-
version: '0.6'
|
104
|
-
- - ">="
|
105
|
-
- !ruby/object:Gem::Version
|
106
|
-
version: 0.6.2
|
107
|
-
type: :development
|
108
|
-
prerelease: false
|
109
|
-
version_requirements: !ruby/object:Gem::Requirement
|
110
|
-
requirements:
|
111
|
-
- - "~>"
|
112
|
-
- !ruby/object:Gem::Version
|
113
|
-
version: '0.6'
|
114
|
-
- - ">="
|
115
|
-
- !ruby/object:Gem::Version
|
116
|
-
version: 0.6.2
|
117
|
-
- !ruby/object:Gem::Dependency
|
118
|
-
name: hoe-bundler
|
119
|
-
requirement: !ruby/object:Gem::Requirement
|
120
|
-
requirements:
|
121
|
-
- - "~>"
|
122
|
-
- !ruby/object:Gem::Version
|
123
|
-
version: '1.0'
|
124
|
-
type: :development
|
125
|
-
prerelease: false
|
126
|
-
version_requirements: !ruby/object:Gem::Requirement
|
127
|
-
requirements:
|
128
|
-
- - "~>"
|
129
|
-
- !ruby/object:Gem::Version
|
130
|
-
version: '1.0'
|
131
|
-
- !ruby/object:Gem::Dependency
|
132
|
-
name: rspec
|
133
|
-
requirement: !ruby/object:Gem::Requirement
|
134
|
-
requirements:
|
135
|
-
- - "~>"
|
136
|
-
- !ruby/object:Gem::Version
|
137
|
-
version: '3.5'
|
138
|
-
type: :development
|
139
|
-
prerelease: false
|
140
|
-
version_requirements: !ruby/object:Gem::Requirement
|
141
|
-
requirements:
|
142
|
-
- - "~>"
|
143
|
-
- !ruby/object:Gem::Version
|
144
|
-
version: '3.5'
|
145
|
-
- !ruby/object:Gem::Dependency
|
146
|
-
name: rdoc
|
147
|
-
requirement: !ruby/object:Gem::Requirement
|
148
|
-
requirements:
|
149
|
-
- - "~>"
|
150
|
-
- !ruby/object:Gem::Version
|
151
|
-
version: '5.1'
|
152
|
-
type: :development
|
153
|
-
prerelease: false
|
154
|
-
version_requirements: !ruby/object:Gem::Requirement
|
155
|
-
requirements:
|
156
|
-
- - "~>"
|
157
|
-
- !ruby/object:Gem::Version
|
158
|
-
version: '5.1'
|
159
|
-
- !ruby/object:Gem::Dependency
|
160
|
-
name: hoe
|
161
|
-
requirement: !ruby/object:Gem::Requirement
|
162
|
-
requirements:
|
163
|
-
- - "~>"
|
164
|
-
- !ruby/object:Gem::Version
|
165
|
-
version: '3.16'
|
166
|
-
type: :development
|
167
|
-
prerelease: false
|
168
|
-
version_requirements: !ruby/object:Gem::Requirement
|
169
|
-
requirements:
|
170
|
-
- - "~>"
|
171
|
-
- !ruby/object:Gem::Version
|
172
|
-
version: '3.16'
|
173
|
-
description: |-
|
174
|
-
Pg is the Ruby interface to the {PostgreSQL RDBMS}[http://www.postgresql.org/].
|
175
|
-
|
176
|
-
It works with {PostgreSQL 9.2 and later}[http://www.postgresql.org/support/versioning/].
|
177
|
-
|
178
|
-
A small example usage:
|
179
|
-
|
180
|
-
#!/usr/bin/env ruby
|
181
|
-
|
182
|
-
require 'pg'
|
183
|
-
|
184
|
-
# Output a table of current connections to the DB
|
185
|
-
conn = PG.connect( dbname: 'sales' )
|
186
|
-
conn.exec( "SELECT * FROM pg_stat_activity" ) do |result|
|
187
|
-
puts " PID | User | Query"
|
188
|
-
result.each do |row|
|
189
|
-
puts " %7d | %-16s | %s " %
|
190
|
-
row.values_at('procpid', 'usename', 'current_query')
|
191
|
-
end
|
192
|
-
end
|
33
|
+
date: 2023-09-01 00:00:00.000000000 Z
|
34
|
+
dependencies: []
|
35
|
+
description: Pg is the Ruby interface to the PostgreSQL RDBMS. It works with PostgreSQL
|
36
|
+
9.3 and later.
|
193
37
|
email:
|
194
38
|
- ged@FaerieMUD.org
|
195
39
|
- lars@greiz-reinsdorf.de
|
@@ -198,26 +42,26 @@ extensions:
|
|
198
42
|
- ext/extconf.rb
|
199
43
|
extra_rdoc_files:
|
200
44
|
- Contributors.rdoc
|
201
|
-
- History.
|
202
|
-
- Manifest.txt
|
45
|
+
- History.md
|
203
46
|
- README-OS_X.rdoc
|
204
47
|
- README-Windows.rdoc
|
205
|
-
- README.ja.
|
206
|
-
- README.
|
207
|
-
- ext/errorcodes.txt
|
208
|
-
- POSTGRES
|
209
|
-
- LICENSE
|
48
|
+
- README.ja.md
|
49
|
+
- README.md
|
210
50
|
- ext/gvl_wrappers.c
|
51
|
+
- ext/gvl_wrappers.h
|
211
52
|
- ext/pg.c
|
53
|
+
- ext/pg.h
|
212
54
|
- ext/pg_binary_decoder.c
|
213
55
|
- ext/pg_binary_encoder.c
|
214
56
|
- ext/pg_coder.c
|
215
57
|
- ext/pg_connection.c
|
216
58
|
- ext/pg_copy_coder.c
|
217
59
|
- ext/pg_errors.c
|
60
|
+
- ext/pg_record_coder.c
|
218
61
|
- ext/pg_result.c
|
219
62
|
- ext/pg_text_decoder.c
|
220
63
|
- ext/pg_text_encoder.c
|
64
|
+
- ext/pg_tuple.c
|
221
65
|
- ext/pg_type_map.c
|
222
66
|
- ext/pg_type_map_all_strings.c
|
223
67
|
- ext/pg_type_map_by_class.c
|
@@ -225,22 +69,62 @@ extra_rdoc_files:
|
|
225
69
|
- ext/pg_type_map_by_mri_type.c
|
226
70
|
- ext/pg_type_map_by_oid.c
|
227
71
|
- ext/pg_type_map_in_ruby.c
|
228
|
-
- ext/
|
72
|
+
- ext/pg_util.c
|
73
|
+
- ext/pg_util.h
|
74
|
+
- lib/pg.rb
|
75
|
+
- lib/pg/basic_type_map_based_on_result.rb
|
76
|
+
- lib/pg/basic_type_map_for_queries.rb
|
77
|
+
- lib/pg/basic_type_map_for_results.rb
|
78
|
+
- lib/pg/basic_type_registry.rb
|
79
|
+
- lib/pg/binary_decoder/date.rb
|
80
|
+
- lib/pg/binary_decoder/timestamp.rb
|
81
|
+
- lib/pg/binary_encoder/timestamp.rb
|
82
|
+
- lib/pg/coder.rb
|
83
|
+
- lib/pg/connection.rb
|
84
|
+
- lib/pg/exceptions.rb
|
85
|
+
- lib/pg/result.rb
|
86
|
+
- lib/pg/text_decoder/date.rb
|
87
|
+
- lib/pg/text_decoder/inet.rb
|
88
|
+
- lib/pg/text_decoder/json.rb
|
89
|
+
- lib/pg/text_decoder/numeric.rb
|
90
|
+
- lib/pg/text_decoder/timestamp.rb
|
91
|
+
- lib/pg/text_encoder/date.rb
|
92
|
+
- lib/pg/text_encoder/inet.rb
|
93
|
+
- lib/pg/text_encoder/json.rb
|
94
|
+
- lib/pg/text_encoder/numeric.rb
|
95
|
+
- lib/pg/text_encoder/timestamp.rb
|
96
|
+
- lib/pg/tuple.rb
|
97
|
+
- lib/pg/type_map_by_column.rb
|
98
|
+
- lib/pg/version.rb
|
229
99
|
files:
|
100
|
+
- ".appveyor.yml"
|
101
|
+
- ".gems"
|
230
102
|
- ".gemtest"
|
103
|
+
- ".github/workflows/binary-gems.yml"
|
104
|
+
- ".github/workflows/source-gem.yml"
|
105
|
+
- ".gitignore"
|
106
|
+
- ".hgsigs"
|
107
|
+
- ".hgtags"
|
108
|
+
- ".irbrc"
|
109
|
+
- ".pryrc"
|
110
|
+
- ".tm_properties"
|
111
|
+
- ".travis.yml"
|
231
112
|
- BSDL
|
232
|
-
- ChangeLog
|
233
113
|
- Contributors.rdoc
|
234
|
-
-
|
114
|
+
- Gemfile
|
115
|
+
- History.md
|
235
116
|
- LICENSE
|
236
117
|
- Manifest.txt
|
237
118
|
- POSTGRES
|
238
119
|
- README-OS_X.rdoc
|
239
120
|
- README-Windows.rdoc
|
240
|
-
- README.ja.
|
241
|
-
- README.
|
121
|
+
- README.ja.md
|
122
|
+
- README.md
|
242
123
|
- Rakefile
|
243
124
|
- Rakefile.cross
|
125
|
+
- certs/ged.pem
|
126
|
+
- certs/larskanis-2022.pem
|
127
|
+
- certs/larskanis-2023.pem
|
244
128
|
- ext/errorcodes.def
|
245
129
|
- ext/errorcodes.rb
|
246
130
|
- ext/errorcodes.txt
|
@@ -255,9 +139,11 @@ files:
|
|
255
139
|
- ext/pg_connection.c
|
256
140
|
- ext/pg_copy_coder.c
|
257
141
|
- ext/pg_errors.c
|
142
|
+
- ext/pg_record_coder.c
|
258
143
|
- ext/pg_result.c
|
259
144
|
- ext/pg_text_decoder.c
|
260
145
|
- ext/pg_text_encoder.c
|
146
|
+
- ext/pg_tuple.c
|
261
147
|
- ext/pg_type_map.c
|
262
148
|
- ext/pg_type_map_all_strings.c
|
263
149
|
- ext/pg_type_map_by_class.c
|
@@ -265,59 +151,101 @@ files:
|
|
265
151
|
- ext/pg_type_map_by_mri_type.c
|
266
152
|
- ext/pg_type_map_by_oid.c
|
267
153
|
- ext/pg_type_map_in_ruby.c
|
268
|
-
- ext/
|
269
|
-
- ext/
|
154
|
+
- ext/pg_util.c
|
155
|
+
- ext/pg_util.h
|
270
156
|
- ext/vc/pg.sln
|
271
157
|
- ext/vc/pg_18/pg.vcproj
|
272
158
|
- ext/vc/pg_19/pg_19.vcproj
|
273
159
|
- lib/pg.rb
|
274
|
-
- lib/pg/
|
160
|
+
- lib/pg/basic_type_map_based_on_result.rb
|
161
|
+
- lib/pg/basic_type_map_for_queries.rb
|
162
|
+
- lib/pg/basic_type_map_for_results.rb
|
163
|
+
- lib/pg/basic_type_registry.rb
|
164
|
+
- lib/pg/binary_decoder/date.rb
|
165
|
+
- lib/pg/binary_decoder/timestamp.rb
|
166
|
+
- lib/pg/binary_encoder/timestamp.rb
|
275
167
|
- lib/pg/coder.rb
|
276
168
|
- lib/pg/connection.rb
|
277
|
-
- lib/pg/constants.rb
|
278
169
|
- lib/pg/exceptions.rb
|
279
170
|
- lib/pg/result.rb
|
280
|
-
- lib/pg/text_decoder.rb
|
281
|
-
- lib/pg/
|
171
|
+
- lib/pg/text_decoder/date.rb
|
172
|
+
- lib/pg/text_decoder/inet.rb
|
173
|
+
- lib/pg/text_decoder/json.rb
|
174
|
+
- lib/pg/text_decoder/numeric.rb
|
175
|
+
- lib/pg/text_decoder/timestamp.rb
|
176
|
+
- lib/pg/text_encoder/date.rb
|
177
|
+
- lib/pg/text_encoder/inet.rb
|
178
|
+
- lib/pg/text_encoder/json.rb
|
179
|
+
- lib/pg/text_encoder/numeric.rb
|
180
|
+
- lib/pg/text_encoder/timestamp.rb
|
181
|
+
- lib/pg/tuple.rb
|
282
182
|
- lib/pg/type_map_by_column.rb
|
283
|
-
-
|
284
|
-
-
|
285
|
-
-
|
286
|
-
-
|
287
|
-
-
|
288
|
-
-
|
289
|
-
-
|
290
|
-
-
|
291
|
-
-
|
292
|
-
-
|
293
|
-
-
|
294
|
-
-
|
295
|
-
-
|
296
|
-
-
|
297
|
-
|
183
|
+
- lib/pg/version.rb
|
184
|
+
- misc/openssl-pg-segfault.rb
|
185
|
+
- misc/postgres/History.txt
|
186
|
+
- misc/postgres/Manifest.txt
|
187
|
+
- misc/postgres/README.txt
|
188
|
+
- misc/postgres/Rakefile
|
189
|
+
- misc/postgres/lib/postgres.rb
|
190
|
+
- misc/ruby-pg/History.txt
|
191
|
+
- misc/ruby-pg/Manifest.txt
|
192
|
+
- misc/ruby-pg/README.txt
|
193
|
+
- misc/ruby-pg/Rakefile
|
194
|
+
- misc/ruby-pg/lib/ruby/pg.rb
|
195
|
+
- pg.gemspec
|
196
|
+
- rakelib/task_extension.rb
|
197
|
+
- sample/array_insert.rb
|
198
|
+
- sample/async_api.rb
|
199
|
+
- sample/async_copyto.rb
|
200
|
+
- sample/async_mixed.rb
|
201
|
+
- sample/check_conn.rb
|
202
|
+
- sample/copydata.rb
|
203
|
+
- sample/copyfrom.rb
|
204
|
+
- sample/copyto.rb
|
205
|
+
- sample/cursor.rb
|
206
|
+
- sample/disk_usage_report.rb
|
207
|
+
- sample/issue-119.rb
|
208
|
+
- sample/losample.rb
|
209
|
+
- sample/minimal-testcase.rb
|
210
|
+
- sample/notify_wait.rb
|
211
|
+
- sample/pg_statistics.rb
|
212
|
+
- sample/replication_monitor.rb
|
213
|
+
- sample/test_binary_values.rb
|
214
|
+
- sample/wal_shipper.rb
|
215
|
+
- sample/warehouse_partitions.rb
|
216
|
+
- translation/.po4a-version
|
217
|
+
- translation/po/all.pot
|
218
|
+
- translation/po/ja.po
|
219
|
+
- translation/po4a.cfg
|
220
|
+
homepage: https://github.com/ged/ruby-pg
|
298
221
|
licenses:
|
299
|
-
- BSD-
|
300
|
-
metadata:
|
222
|
+
- BSD-2-Clause
|
223
|
+
metadata:
|
224
|
+
homepage_uri: https://github.com/ged/ruby-pg
|
225
|
+
source_code_uri: https://github.com/ged/ruby-pg
|
226
|
+
changelog_uri: https://github.com/ged/ruby-pg/blob/master/History.md
|
227
|
+
documentation_uri: http://deveiate.org/code/pg
|
301
228
|
post_install_message:
|
302
229
|
rdoc_options:
|
303
230
|
- "--main"
|
304
|
-
- README.
|
231
|
+
- README.md
|
232
|
+
- "--title"
|
233
|
+
- 'PG: The Ruby PostgreSQL Driver'
|
305
234
|
require_paths:
|
306
235
|
- lib
|
307
236
|
required_ruby_version: !ruby/object:Gem::Requirement
|
308
237
|
requirements:
|
309
238
|
- - ">="
|
310
239
|
- !ruby/object:Gem::Version
|
311
|
-
version: 2.
|
240
|
+
version: '2.5'
|
312
241
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
313
242
|
requirements:
|
314
243
|
- - ">="
|
315
244
|
- !ruby/object:Gem::Version
|
316
245
|
version: '0'
|
317
246
|
requirements: []
|
318
|
-
|
319
|
-
rubygems_version: 2.7.3
|
247
|
+
rubygems_version: 3.4.15
|
320
248
|
signing_key:
|
321
249
|
specification_version: 4
|
322
|
-
summary: Pg is the Ruby interface to the
|
250
|
+
summary: Pg is the Ruby interface to the PostgreSQL RDBMS
|
323
251
|
test_files: []
|
metadata.gz.sig
CHANGED
Binary file
|