pg 0.10.0 → 0.10.1pre209
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.sig +0 -0
- data/ChangeLog +269 -221
- data/ext/extconf.rb +12 -111
- data/ext/pg.c +12 -5
- data/lib/pg.rb +6 -2
- data/rake/hg.rb +34 -3
- data/rake/testing.rb +1 -0
- data/spec/lib/helpers.rb +11 -9
- data/spec/pgconn_spec.rb +111 -1
- metadata +4 -4
- metadata.gz.sig +0 -0
data.tar.gz.sig
CHANGED
Binary file
|
data/ChangeLog
CHANGED
@@ -1,582 +1,630 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
209[tip] 89348c8bb6d1 2010-12-06 12:00 -0800 ged
|
2
|
+
Experimenting with a greatly-simplified extconf, since the complex one isn't solving any problems
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
191:171 3402babf2cdf 2010-10-31 16:29 -0700 ged
|
8
|
-
Fixed issue with PGconn#wait_for_notify that caused it to miss notifications that happened after the LISTEN but before the wait_for_notify.
|
9
|
-
|
10
|
-
190 193043bf2244 2010-10-08 09:40 -0700 ged
|
11
|
-
Added support for the payload of NOTIFY events (w/Mahlon E. Smith)
|
12
|
-
|
13
|
-
189:169 ce9b893ff824 2010-10-08 07:25 -0700 ged
|
14
|
-
start new patch on default
|
4
|
+
208 aea173eec98a 2010-12-06 08:45 -0800 ged
|
5
|
+
Bumping version to 0.10.1.
|
15
6
|
|
16
|
-
|
17
|
-
|
7
|
+
207 d61e3310ea3d 2010-12-06 08:41 -0800 ged
|
8
|
+
Fixing compatibility with versions of PostgreSQL without PQgetCancel. (fixes #36)
|
18
9
|
|
19
|
-
|
20
|
-
|
10
|
+
206 89979f184b22 2010-12-06 07:44 -0800 ged
|
11
|
+
Fix require for natively-compiled extension under Windows. (fixes #55)
|
21
12
|
|
22
|
-
|
23
|
-
|
13
|
+
205 9e11be78bfe4 2010-12-06 07:32 -0800 ged
|
14
|
+
Change rb_yield_splat() to rb_yield_values() for compatibility with Rubinius. (fixes #54)
|
24
15
|
|
25
|
-
|
26
|
-
|
16
|
+
204 eb0d4b1df418 2010-12-01 18:54 -0800 ged
|
17
|
+
Removed tag 0.10.0
|
27
18
|
|
28
|
-
|
29
|
-
|
19
|
+
203 78a63dce1491 2010-12-01 18:52 -0800 ged
|
20
|
+
Added tag v0.10.0 for changeset 1822a169c4fe
|
30
21
|
|
31
|
-
|
32
|
-
|
22
|
+
202 469211f606ea 2010-12-01 18:52 -0800 ged
|
23
|
+
Fix deprecated expectation.
|
33
24
|
|
34
|
-
|
35
|
-
|
25
|
+
201:197,200 857722663a6f 2010-12-01 18:47 -0800 ged
|
26
|
+
Merged in Mahlon's wait_for_notify update for PostgreSQL 9's notification payload
|
36
27
|
|
37
|
-
|
38
|
-
|
28
|
+
200 8ffb67a23f45 2010-12-01 18:30 -0800 ged
|
29
|
+
Closing pg90_notify_payload pbranch for merge into default
|
39
30
|
|
40
|
-
|
41
|
-
|
31
|
+
199 de86dca00ad2 2010-12-01 18:24 -0800 ged
|
32
|
+
Finished the merge of default; fixed specs under 1.9.2.
|
42
33
|
|
43
|
-
|
44
|
-
|
34
|
+
198:197,188 60664b2495cf 2010-12-01 16:39 -0800 ged
|
35
|
+
merge of default
|
45
36
|
|
46
|
-
|
47
|
-
|
37
|
+
197 148d0cc3db4a 2010-12-01 14:19 -0800 ged
|
38
|
+
Added tag 0.10.0 for changeset 1822a169c4fe
|
48
39
|
|
49
|
-
|
50
|
-
|
40
|
+
196[v0.10.0] 1822a169c4fe 2010-12-01 14:19 -0800 ged
|
41
|
+
Added signature for changeset 3993015a841e
|
51
42
|
|
52
|
-
|
53
|
-
|
43
|
+
195 3993015a841e 2010-12-01 12:20 -0800 ged
|
44
|
+
Ignore the yard cache, handle missing rake-compiler for non-compile-related tasks.
|
54
45
|
|
55
|
-
|
56
|
-
|
46
|
+
194 71786704391b 2010-11-11 21:39 -0600 ged
|
47
|
+
Build/gem updates
|
57
48
|
|
58
|
-
|
59
|
-
|
49
|
+
193 899329ce1b4e 2010-11-11 21:09 -0600 ged
|
50
|
+
Added a spec for collapsed notifications.
|
60
51
|
|
61
|
-
|
62
|
-
|
52
|
+
192 413f9e81e3ea 2010-11-01 09:01 -0700 ged
|
53
|
+
More work trying to get the Windows-native gem to compile. No luck, but it's closer.
|
63
54
|
|
64
|
-
|
65
|
-
|
55
|
+
191 3402babf2cdf 2010-10-31 16:29 -0700 ged
|
56
|
+
Fixed issue with PGconn#wait_for_notify that caused it to miss notifications that happened after the LISTEN but before the wait_for_notify.
|
66
57
|
|
67
|
-
|
58
|
+
190 9d8f82721f69 2010-10-29 08:09 -0700 ged
|
68
59
|
Updated to RSpec 2.0
|
69
60
|
|
70
|
-
|
61
|
+
189:186 b2df89600d95 2010-10-11 09:24 -0700 ged
|
71
62
|
Fixes for windows static build.
|
72
63
|
|
73
|
-
|
64
|
+
188 193043bf2244 2010-10-08 09:40 -0700 ged
|
65
|
+
Added support for the payload of NOTIFY events (w/Mahlon E. Smith)
|
66
|
+
|
67
|
+
187 ce9b893ff824 2010-10-08 07:25 -0700 ged
|
68
|
+
start new patch on default
|
69
|
+
|
70
|
+
186 49ff3442c2ee 2010-10-08 07:23 -0700 ged
|
74
71
|
Fixes to get the static windows build to work with PostgreSQL 9.0 and OpenSSL 1.0.0a
|
75
72
|
|
76
|
-
|
73
|
+
185 1fa5cd6851e3 2010-09-28 09:10 -0700 ged
|
77
74
|
More work trying to get the native windows gem to compile under PostgreSQL 9.0
|
78
75
|
|
79
|
-
|
76
|
+
184 c9fb855a7d50 2010-09-28 09:09 -0700 ged
|
80
77
|
Adding a sample of how to use COPY FROM
|
81
78
|
|
82
|
-
|
79
|
+
183 d85ff87e5949 2010-09-24 10:34 -0700 ged
|
83
80
|
Fixes for Ruby 1.9.2.
|
84
81
|
|
85
|
-
|
82
|
+
182 5dbc24f596c8 2010-09-24 10:18 -0700 ged
|
86
83
|
Version bump, updates for PostgreSQL 9.
|
87
84
|
|
88
|
-
|
85
|
+
181 1f8dd92ca16c 2010-08-03 10:31 -0700 ged
|
89
86
|
Merged JRuby fix into the build system, pulled down other build-system updates. Thanks to timfel for the fix.
|
90
87
|
|
91
|
-
|
88
|
+
180 4f705f605e51 2010-08-03 17:56 +0200 timfelgentreff
|
92
89
|
Fix to allow Rakefile to work on JRuby
|
93
90
|
|
94
|
-
|
91
|
+
179 92cc211ef553 2010-08-02 09:28 -0700 ged
|
95
92
|
Honor Ruby's default_internal encoding when connecting via the synchronous interface; fixes #33
|
96
93
|
|
97
|
-
|
94
|
+
178 a2237e39d399 2010-08-02 09:23 -0700 ged
|
98
95
|
Don't treat the installed pg_config not having archflags as an error; fixes #39
|
99
96
|
|
100
|
-
|
97
|
+
177 14b882b7b88c 2010-08-02 09:21 -0700 ged
|
101
98
|
Install extension under arch-specific directory (RPS fix)
|
102
99
|
|
103
|
-
|
100
|
+
176 b0a5ae858569 2010-07-26 19:46 -0700 ged
|
104
101
|
Adding rake tasklibs as a sub-repo
|
105
102
|
|
106
|
-
|
103
|
+
175 37835e3b8701 2010-07-21 18:39 -0700 ged
|
107
104
|
Removed spec for issue #22, as the library is behaving the same as the underlying library; closes #22
|
108
105
|
|
109
|
-
|
106
|
+
174:168,173 86f238c12fa3 2010-07-21 18:36 -0700 ged
|
110
107
|
Merged with 168:dfaa59767b2e
|
111
108
|
|
112
|
-
|
113
|
-
Reworded an example's description and added a specific transaction-abort spec
|
114
|
-
|
115
|
-
155:154,151 e756f8fb15d8 2010-06-22 16:23 -0700 ged
|
109
|
+
173:172,169 e756f8fb15d8 2010-06-22 16:23 -0700 ged
|
116
110
|
Merged with 170:5418a1d86d91
|
117
111
|
|
118
|
-
|
112
|
+
172 8922f0a8ee44 2010-06-22 16:22 -0700 ged
|
119
113
|
Adding example of invalid binary data issue (refs #22), fixing EXT_SO path
|
120
114
|
|
121
|
-
|
115
|
+
171 cb92aa4b6599 2010-02-25 10:39 -0800 ged
|
122
116
|
Adding a spec to test bug #12
|
123
117
|
|
124
|
-
|
118
|
+
170:158 86026f5ecf70 2010-02-25 10:39 -0800 ged
|
125
119
|
Adding rake-compiler to the dev dependencies
|
126
120
|
|
127
|
-
|
121
|
+
169:167 5418a1d86d91 2010-06-22 15:54 -0700 ged
|
128
122
|
Cross-compile tasks cleanup, extconf diagnostic improvement.
|
129
123
|
|
130
|
-
|
124
|
+
168 dfaa59767b2e 2010-07-21 18:35 -0700 ged
|
125
|
+
Reworded an example's description and added a specific transaction-abort spec
|
126
|
+
|
127
|
+
167 07502a793f3a 2010-06-22 10:44 -0700 ged
|
131
128
|
Adding some more stuff to the ignorefile
|
132
129
|
|
133
|
-
|
130
|
+
166 873867122e80 2010-06-22 10:43 -0700 ged
|
134
131
|
Modified the large-object sample script to reflect the pg library's API (refs #35)
|
135
132
|
|
136
|
-
|
133
|
+
165 ea6eae59e917 2010-06-21 11:08 -0700 ged
|
137
134
|
Updating build system, adding .orig files to ignore list.
|
138
135
|
|
139
|
-
|
136
|
+
164 bb8a3baad96e 2010-06-14 13:57 -0700 ged
|
140
137
|
Whitespace fix
|
141
138
|
|
142
|
-
|
139
|
+
163 45e6518b780d 2010-05-26 09:33 -0700 ged
|
143
140
|
Actually, just use the cflags from pg_config, which should resolve both the -Wall and the -lsocket issue (refs #30)
|
144
141
|
|
145
|
-
|
142
|
+
162 730fb885ce08 2010-05-26 09:27 -0700 ged
|
146
143
|
Fixing compilation for non-GCC platforms (fixes #30)
|
147
144
|
|
148
|
-
|
145
|
+
161 a47ffe890970 2010-03-16 07:36 -0700 ged
|
149
146
|
Fixed typo in ext/extconf.rb -- thanks to Keith Cascio for spotting this. Closes #27.
|
150
147
|
|
151
|
-
|
148
|
+
160 9a296096f7e9 2010-02-28 08:56 -0800 ged
|
152
149
|
Added tag 0.9.0 for changeset da726282493c
|
153
150
|
|
154
|
-
|
151
|
+
159[0.9.0] da726282493c 2010-02-28 08:56 -0800 ged
|
155
152
|
Added signature for changeset 872063e42b12
|
156
153
|
|
157
|
-
|
154
|
+
158 872063e42b12 2010-02-19 08:02 -0800 ged
|
158
155
|
Adding "fat gem" compatible loader, set the default RUBY_CC_VERSION.
|
159
156
|
|
160
|
-
|
157
|
+
157 ab525ca90531 2010-02-19 06:27 -0800 ged
|
161
158
|
Updated the Rakefile so it includes itself in gems. (closes #15) Thanks to flameeyes@bitbucket for
|
162
159
|
|
163
|
-
|
160
|
+
156 9c65eb905416 2010-02-18 06:52 -0800 ged
|
164
161
|
Applied patch for PGconn#async_exec to make it have the same semantics as PGconn#exec (closes #19). Thanks again to Lars Kanis for the patch.
|
165
162
|
|
166
|
-
|
163
|
+
155 b0017ac0ecb5 2010-02-17 15:30 -0800 ged
|
167
164
|
Updated the Rakefile to always default the package version even if a version can't be read from the VERSION_FILE.
|
168
165
|
|
169
|
-
|
166
|
+
154 c7d5458af696 2010-02-17 06:23 -0800 ged
|
170
167
|
Improving spec database setup function (closes #18). Thanks to Lars Kanis for another fine patch.
|
171
168
|
|
172
|
-
|
169
|
+
153 39b11474d035 2010-02-17 06:14 -0800 ged
|
173
170
|
Ack! Removing typo
|
174
171
|
|
175
|
-
|
172
|
+
152 9d54bbc98488 2010-02-17 06:10 -0800 ged
|
176
173
|
Adding a test to ensure the result encoding remains the same even when client_encoding in the connection changes.
|
177
174
|
|
178
|
-
|
175
|
+
151 31afece7c203 2010-01-18 09:15 -0800 ged
|
179
176
|
Made the 'make_header' in the extconf more clear.
|
180
177
|
|
181
|
-
|
178
|
+
150:149,148 d9c920068712 2010-01-13 20:56 -0800 pgsql
|
182
179
|
Merged
|
183
180
|
|
184
|
-
|
181
|
+
149:141 294eb6d5530b 2010-01-13 20:51 -0800 pgsql
|
185
182
|
In rspec tests, replace the pattern:
|
186
183
|
|
187
|
-
|
184
|
+
148 74fab32c2687 2010-01-11 08:15 -0800 ged
|
188
185
|
A better fix for the PGconn#block weirdness on Win32 (closes #16).
|
189
186
|
|
190
|
-
|
187
|
+
147 f8dfc1b6c51c 2010-01-06 06:17 -0800 ged
|
191
188
|
Rearranged the sections of the README.
|
192
189
|
|
193
|
-
|
190
|
+
146 0df792de2a19 2010-01-05 08:48 -0800 ged
|
194
191
|
Updating MacOS X README.
|
195
192
|
|
196
|
-
|
193
|
+
145 2894973bc63f 2010-01-04 18:28 -0800 ged
|
197
194
|
Work around broken rb_thread_select() on win32; thanks to Lars Kanis for the patch!
|
198
195
|
|
199
|
-
|
196
|
+
144 88dacdb9c97d 2010-01-04 18:16 -0800 ged
|
200
197
|
Reverted removal of PGresult::InvalidOid, fixed broken spec.
|
201
198
|
|
202
|
-
|
199
|
+
143 739cec560448 2010-01-04 17:55 -0800 ged
|
203
200
|
Ignore some generated files, documentation work, removed type OID constants.
|
204
201
|
|
205
|
-
|
202
|
+
142 38a0d2a90664 2010-01-04 17:39 -0800 ged
|
206
203
|
Applied patch for static cross-compilation of win32 gem from Lars Kanis with a few changes to
|
207
204
|
|
208
|
-
|
205
|
+
141 f31202539234 2010-01-03 11:40 -0800 ged
|
209
206
|
Updated build system
|
210
207
|
|
211
|
-
|
208
|
+
140:138 cc09390cb0a8 2010-01-02 09:22 -0800 ged
|
212
209
|
Added tag 0.8.0 for changeset 7fbe4187e9e5
|
213
210
|
|
214
|
-
|
211
|
+
139:136 d5fa3e079a55 2009-12-31 09:58 -0800 ged
|
212
|
+
Closing branch
|
213
|
+
|
214
|
+
138 05834d47aac3 2009-12-31 09:57 -0800 ged
|
215
215
|
Bumped version to 0.9.0
|
216
216
|
|
217
|
-
|
217
|
+
137:126,136 0997a0aa7624 2009-12-31 09:22 -0800 ged
|
218
218
|
Merged i17n-19-patches branch
|
219
219
|
|
220
|
-
|
220
|
+
136 f5af71167dea 2009-12-28 14:50 -0800 ged
|
221
221
|
Make PGconn.connect_start use PQconnectStart instead of PQconnectdb so asynchronous connection
|
222
222
|
|
223
|
-
|
223
|
+
135 42919e2a4ef8 2009-12-28 08:42 -0800 ged
|
224
224
|
Added column-selection methods to PGresult (#field_values and #column_values). Closes #12. Thanks to
|
225
225
|
|
226
|
-
|
226
|
+
134 39fdb2552163 2009-12-23 08:28 -0800 ged
|
227
227
|
Fixed #11: encrypt_arguments doesn't receive password, thanks to Yuki Miyauchi for the patch.
|
228
228
|
|
229
|
-
|
229
|
+
133 df770b6ad237 2009-12-23 07:49 -0800 ged
|
230
230
|
Fixed infinite loop in async_exec("COPY"), thanks to Mike Pomraning for the patch. Closes #9.
|
231
231
|
|
232
|
-
|
232
|
+
132 4cbcf197cb82 2009-12-16 09:03 -0800 ged
|
233
233
|
New build system, build with rake-compiler, added PGconn::VERSION.
|
234
234
|
|
235
|
-
|
235
|
+
131 6ba661bbdb28 2009-12-15 08:45 -0800 ged
|
236
236
|
Applied Rubyforge patch 26282; fixes #1. Thanks to Nikolai Lugovoi for the patch.
|
237
237
|
|
238
|
-
|
238
|
+
130 3e42badc15de 2009-12-11 17:28 -0800 ged
|
239
239
|
Notify spec fixes, cleanup, Rakefile clean task adjustments.
|
240
240
|
|
241
|
-
|
241
|
+
129 659d80221a45 2009-12-11 13:47 -0800 ged
|
242
242
|
Simplified the spec for PGconn#notify, still segfaulting.
|
243
243
|
|
244
|
-
|
244
|
+
128:127,126 26b614a7ece8 2009-12-11 09:01 -0800 ged
|
245
245
|
Merged Mahlon's examples-directory patch from default.
|
246
246
|
|
247
|
-
|
247
|
+
127:124,125 66234afab283 2009-12-11 09:01 -0800 ged
|
248
248
|
Merged Mahlon's notify patch from default.
|
249
249
|
|
250
|
-
|
250
|
+
126 1e6349a799c3 2009-12-10 10:30 -0800 mahlon
|
251
251
|
Add a sample (usage example) for wait_for_notify().
|
252
252
|
|
253
|
-
|
253
|
+
125:114 a3434e641f6a 2009-12-10 10:22 -0800 mahlon
|
254
254
|
* Small documentation fix for conn.notifies()
|
255
255
|
|
256
|
-
|
256
|
+
124 59549227d7c3 2009-10-29 06:10 -0700 ged
|
257
257
|
Remove old mkrf config file to avoid confusion
|
258
258
|
|
259
|
-
|
259
|
+
123 f30139fb0587 2009-10-28 18:14 -0700 ged
|
260
260
|
Write specs for and applied patch #26283; thanks to Nikolai Lugovoi.
|
261
261
|
|
262
|
-
|
262
|
+
122 a41d4291ffbb 2009-10-28 16:26 -0700 ged
|
263
263
|
Fixups after conversion to Mercurial, fixing tests broken by the changes in the previous commit.
|
264
264
|
|
265
|
-
|
265
|
+
121 91ee1ac36a54 2009-10-28 14:51 +0000 ged
|
266
266
|
* Made spec output elide output from the command line by default, and log everything for
|
267
267
|
|
268
|
-
|
268
|
+
120 0b28f9bd8935 2009-10-17 21:42 +0000 ged
|
269
269
|
Applied patch #26277; thanks to Nikolai Lugovoi.
|
270
270
|
|
271
|
-
|
271
|
+
119 cb5335861c5d 2009-10-16 20:50 +0000 ged
|
272
272
|
Build and warnings cleanup.
|
273
273
|
|
274
|
-
|
274
|
+
118 1d001b550715 2009-08-28 10:50 +0000 ged
|
275
275
|
Applied patch #26116; thanks to Nikolai Lugovoi.
|
276
276
|
|
277
|
-
|
277
|
+
117 d67c62945540 2009-08-28 06:22 +0000 ged
|
278
278
|
* Use pg_ctl -w instead of sleep for specs
|
279
279
|
|
280
|
-
|
280
|
+
116 0524dd20fb0f 2009-08-25 00:35 +0000 ged
|
281
281
|
* Applied patch from (rubyforge:25931), fixes (rubyforge:22925).
|
282
282
|
|
283
|
-
|
283
|
+
115 d0267176eb61 2009-07-30 15:52 +0000 ged
|
284
284
|
Making a branch for merging the patches and new specs to test them.
|
285
285
|
|
286
|
-
|
286
|
+
114[0.8.0] 7fbe4187e9e5 2009-03-28 22:53 +0000 davis
|
287
287
|
Bump version to 0.8.0
|
288
288
|
|
289
|
-
|
289
|
+
113 39a19c65b0a0 2009-03-28 19:39 +0000 cfis
|
290
290
|
Don't call file trace on windows.
|
291
291
|
|
292
|
-
|
292
|
+
112 c4598eee6d1b 2009-03-28 19:33 +0000 cfis
|
293
293
|
Updated VC2008 project
|
294
294
|
|
295
|
-
|
295
|
+
111 c75883fb5979 2009-03-28 19:32 +0000 cfis
|
296
296
|
Updated VC2008 project
|
297
297
|
|
298
|
-
|
298
|
+
110 4192e6d1ccc0 2009-03-28 16:49 +0000 davis
|
299
299
|
Fix socket leak when connection error occurs.
|
300
300
|
|
301
|
-
|
301
|
+
109 03d6ef0de9ef 2009-03-28 15:42 +0000 davis
|
302
302
|
PGconn#lo_close was calling lo_unlink.
|
303
303
|
|
304
|
-
|
304
|
+
108 b27b4b4a54eb 2009-03-28 15:37 +0000 davis
|
305
305
|
Change header so it builds correctly on 1.8 and 1.9.
|
306
306
|
|
307
|
-
|
307
|
+
107 f7b97416c101 2009-03-14 09:22 +0000 cfis
|
308
308
|
Oops - use ALLOC_N not ALLOC, fixes compile error with VC2008.
|
309
309
|
|
310
|
-
|
310
|
+
106 c0fd7531850f 2009-03-14 09:14 +0000 cfis
|
311
311
|
Ignore rdoc directory, pkg directory, nbproject directory.
|
312
312
|
|
313
|
-
|
313
|
+
105 c675c7534c4d 2009-03-14 09:13 +0000 cfis
|
314
314
|
This rakefile is just used for installing the windows gem.
|
315
315
|
|
316
|
-
|
316
|
+
104 c3329724ef5b 2009-03-14 09:13 +0000 cfis
|
317
317
|
Split out building on mingw to a separate rake file.
|
318
318
|
|
319
|
-
|
319
|
+
103 01e1dbb950c8 2009-03-14 09:12 +0000 cfis
|
320
320
|
Updated VC2008 projects for Ruby 1.8 and Ruby 1.9 (1.9 not quite setup yet).
|
321
321
|
|
322
|
-
|
322
|
+
102 677d3eae5b16 2009-03-14 09:11 +0000 cfis
|
323
323
|
Added rdoc task so you can type rake rdoc. Makes it easier to debug rdoc documentation.
|
324
324
|
|
325
|
-
|
325
|
+
101 c33a73c14126 2009-03-14 08:54 +0000 cfis
|
326
326
|
Windows compatibility - use tcp/ip sockets, use full path names, read files in binary mode.
|
327
327
|
|
328
|
-
|
328
|
+
100 241d3410b875 2009-03-14 08:48 +0000 cfis
|
329
329
|
Ripple port change through text. Always full path to open spec file.
|
330
330
|
|
331
|
-
|
331
|
+
99 1bf29d30c16c 2009-03-14 08:29 +0000 cfis
|
332
332
|
First stab at getting test to work on Windows. Windows does not support unix-sockets, so have to use tcp/ip sockets. Also windows requires that command line parameters are quoted with " and not '.
|
333
333
|
|
334
|
-
|
334
|
+
98 4dae2cabb5ae 2009-03-14 07:47 +0000 cfis
|
335
335
|
Export Init_pg in windows shared library.
|
336
336
|
|
337
|
-
|
337
|
+
97 4e9b028c55cd 2009-03-14 07:46 +0000 cfis
|
338
338
|
Fix up memory handling for Windows (match ALLOC with xfree).
|
339
339
|
|
340
|
-
|
340
|
+
96 4a9ffd0aa913 2009-03-06 18:18 +0000 davis
|
341
341
|
1.9 compatibility fixes.
|
342
342
|
|
343
|
-
|
343
|
+
95:93 7178d13749b7 2008-12-03 06:52 +0000 davis
|
344
344
|
Add better support for windows build.
|
345
345
|
|
346
|
-
|
346
|
+
94:92 4c2ea65f2eb9 2008-10-14 05:27 +0000 davis
|
347
|
+
Merged revisions 175 via svnmerge from
|
348
|
+
|
349
|
+
93:91 3bf9ef75bae5 2008-10-14 05:25 +0000 davis
|
347
350
|
Revert r172.
|
348
351
|
|
349
|
-
|
352
|
+
92:86 7e7c22be0302 2008-10-05 19:43 +0000 davis
|
353
|
+
Merged revisions 169-173 via svnmerge from
|
354
|
+
|
355
|
+
91 cdf306d84adf 2008-10-05 19:18 +0000 davis
|
350
356
|
Update spec tests.
|
351
357
|
|
352
|
-
|
358
|
+
90 0386537bd139 2008-10-05 19:04 +0000 davis
|
353
359
|
Include all libraries listed in "pg_config --libs" in the build.
|
354
360
|
|
355
|
-
|
361
|
+
89 68473ee45e28 2008-10-05 18:47 +0000 davis
|
356
362
|
Fix PGconn#async_exec and PGconn#get_last_result to properly clear all
|
357
363
|
|
358
|
-
|
364
|
+
88 622eec9c6b0b 2008-10-05 18:01 +0000 davis
|
359
365
|
Throw correct exception when result is NULL.
|
360
366
|
|
361
|
-
|
367
|
+
87:85 8e8045947a9c 2008-08-21 02:48 +0000 davis
|
362
368
|
Fixed option connection argument in the case of using 7 arguments.
|
363
369
|
|
364
|
-
|
370
|
+
86:84 3e9dda291ef3 2008-08-17 20:42 +0000 davis
|
371
|
+
Merged revisions 166 via svnmerge from
|
372
|
+
|
373
|
+
85:80 c5c44a6267f7 2008-08-17 20:35 +0000 davis
|
365
374
|
Typo fix.
|
366
375
|
|
367
|
-
|
376
|
+
84 3686c9944fe1 2008-08-17 20:27 +0000 davis
|
377
|
+
Add ext_helper.rb
|
378
|
+
|
379
|
+
83 ed3294b76bf7 2008-08-17 20:23 +0000 davis
|
380
|
+
Merged revisions 149-160 via svnmerge from
|
381
|
+
|
382
|
+
82 ff6af5fc4dc3 2008-08-17 20:05 +0000 davis
|
383
|
+
Initialized merge tracking via "svnmerge" with revisions "1-146" from
|
384
|
+
|
385
|
+
81:68 1a7b63bacfee 2008-08-17 19:55 +0000 davis
|
386
|
+
Initialized merge tracking via "svnmerge" with revisions "1-146" from
|
387
|
+
|
388
|
+
80 ed8927d7f45d 2008-08-17 19:26 +0000 davis
|
368
389
|
Properly protect variables from garbage collection, preventing possible memory
|
369
390
|
|
370
|
-
|
391
|
+
79 c7c5d25c851c 2008-08-17 18:19 +0000 davis
|
371
392
|
Applied build patch from Brett Neumeier. Thanks!
|
372
393
|
|
373
|
-
|
394
|
+
78 48d2bdfcc630 2008-07-24 05:46 +0000 davis
|
374
395
|
Fixed PGconn#setnonblocking
|
375
396
|
|
376
|
-
|
397
|
+
77 b2e1bc03aca5 2008-07-24 05:33 +0000 davis
|
377
398
|
Changed all temporary allocations to use ALLOC_N (heap
|
378
399
|
|
379
|
-
|
400
|
+
76 c775c24a75f9 2008-07-08 06:21 +0000 davis
|
380
401
|
Fix oversight in connect arguments for options and connect_timeout
|
381
402
|
|
382
|
-
|
403
|
+
75 b86f0f75181e 2008-04-21 17:41 +0000 davis
|
383
404
|
* backtracked a small piece of the patch, to catch
|
384
405
|
|
385
|
-
|
406
|
+
74 b3a05d09fb27 2008-04-21 17:24 +0000 davis
|
386
407
|
* applied patch from Louis Lavena to improve
|
387
408
|
|
388
|
-
|
409
|
+
73 7579885aff18 2008-04-21 17:13 +0000 davis
|
389
410
|
* added some tests for binary data
|
390
411
|
|
391
|
-
|
412
|
+
72 de58e242dd99 2008-03-20 19:16 +0000 davis
|
392
413
|
* added PGconn#cancel() -> String
|
393
414
|
|
394
|
-
|
415
|
+
71 778892302876 2008-03-20 18:20 +0000 davis
|
395
416
|
* added PGconn.connect_start(...) -> PGconn
|
396
417
|
|
397
|
-
|
418
|
+
70 630cca5e74c1 2008-03-19 21:19 +0000 davis
|
398
419
|
* forgot to add the expected output to the repository,
|
399
420
|
|
400
|
-
|
421
|
+
69:67 661ed2fea9e2 2008-03-19 21:17 +0000 davis
|
401
422
|
This commmit just cleans up indenting and coding
|
402
423
|
|
403
|
-
|
424
|
+
68:65 f9cd915ea427 2008-03-18 02:32 +0000 davis
|
425
|
+
merged ruby-pg/trunk rev 123:146 with ruby-pg/branches/stable
|
426
|
+
|
427
|
+
67 d821d50b7d95 2008-03-17 21:34 +0000 davis
|
404
428
|
re-adding mkrf_config.rb
|
405
429
|
|
406
|
-
|
430
|
+
66:64 a66f44648857 2008-03-17 21:33 +0000 davis
|
407
431
|
temporarily removing mkrf_config.rb and will re-add it in the
|
408
432
|
|
409
|
-
|
433
|
+
65:43 bae01401c92b 2008-03-17 21:29 +0000 davis
|
434
|
+
merged ruby-pg/trunk rev 123:125 with ruby-pg/branches/stable
|
435
|
+
|
436
|
+
64 c8752b1a33cd 2008-03-17 17:29 +0000 davis
|
410
437
|
* 7.3 compatibility fixes
|
411
438
|
|
412
|
-
|
439
|
+
63 4aa1190e1873 2008-03-17 16:19 +0000 davis
|
413
440
|
* Added PGconn#reset_start
|
414
441
|
|
415
|
-
|
442
|
+
62 1224350cdcb6 2008-03-12 17:39 +0000 davis
|
416
443
|
* added SQLSTATE test
|
417
444
|
|
418
|
-
|
445
|
+
61 639f8bf03621 2008-03-12 16:40 +0000 davis
|
419
446
|
* updated the README to reflect the fact that the pg
|
420
447
|
|
421
|
-
|
448
|
+
60 1fd6244025c5 2008-03-11 21:35 +0000 davis
|
422
449
|
* tried to make it easier to find the license information
|
423
450
|
|
424
|
-
|
451
|
+
59 1c4f58ec2264 2008-03-10 23:55 +0000 davis
|
425
452
|
* add better checking to make sure that PGconn#trace is passed
|
426
453
|
|
427
|
-
|
454
|
+
58 e94ce7f92a06 2008-03-10 18:14 +0000 davis
|
428
455
|
* corrected handling of bytea when passed in binary format
|
429
456
|
|
430
|
-
|
457
|
+
57 221e68f16f2d 2008-03-10 17:54 +0000 davis
|
431
458
|
* make PGconn#trace accept any object that provides
|
432
459
|
|
433
|
-
|
460
|
+
56 2e722b22b4bc 2008-03-10 17:34 +0000 davis
|
434
461
|
* Added PGconn#trace(filename)
|
435
462
|
|
436
|
-
|
463
|
+
55 9b1308e85390 2008-03-07 18:11 +0000 davis
|
437
464
|
* Added check to find pg_config. If not found, throw an error.
|
438
465
|
|
439
|
-
|
466
|
+
54 480eae4733ff 2008-02-22 01:26 +0000 davis
|
440
467
|
* fixed PGconn#trace
|
441
468
|
|
442
|
-
|
469
|
+
53 a6a1c8613b31 2008-02-21 01:05 +0000 davis
|
443
470
|
* added PGconn#set_notice_receiver{ |result| ... }
|
444
471
|
|
445
|
-
|
472
|
+
52 8a6e663a70f7 2008-02-19 19:25 +0000 davis
|
446
473
|
quick change
|
447
474
|
|
448
|
-
|
475
|
+
51 5fc41a8f71f0 2008-02-19 19:06 +0000 davis
|
449
476
|
fix escaping of paths on windows (another try)
|
450
477
|
|
451
|
-
|
478
|
+
50 a465fe9f95a3 2008-02-18 19:32 +0000 davis
|
452
479
|
* attempted some compatibility fixes for windows
|
453
480
|
|
454
|
-
|
481
|
+
49 5a91f5660c17 2008-02-13 01:24 +0000 davis
|
455
482
|
* better quoting and error handling when invoking other programs,
|
456
483
|
|
457
|
-
|
484
|
+
48 5289d5034472 2008-02-13 01:10 +0000 davis
|
458
485
|
quote include and library paths
|
459
486
|
|
460
|
-
|
487
|
+
47 ed53517514b1 2008-02-13 00:22 +0000 davis
|
461
488
|
* created a mkrf_config.rb. I am attempting to transition away from
|
462
489
|
|
463
|
-
|
490
|
+
46 21bf96d0f702 2008-02-11 18:35 +0000 davis
|
464
491
|
* windows fixes (thanks Daniel Berger!)
|
465
492
|
|
466
|
-
|
493
|
+
45 9d0a23cf2113 2008-02-11 17:43 +0000 davis
|
467
494
|
* fix temporary postgresql test installation in
|
468
495
|
|
469
|
-
|
496
|
+
44:42 7fcd53437c79 2008-02-08 18:27 +0000 davis
|
470
497
|
* properly retrieve binary data from result sets
|
471
498
|
|
472
|
-
|
499
|
+
43:31 83e5013eccc8 2008-02-05 19:23 +0000 davis
|
500
|
+
merged ruby-pg/trunk rev 109:121 with ruby-pg/branches/stable
|
501
|
+
|
502
|
+
42 295c477ed74f 2008-02-05 17:56 +0000 davis
|
473
503
|
fixed bug caused by a typo. HAVE_LOCREATE should have been HAVE_LO_CREATE
|
474
504
|
|
475
|
-
|
505
|
+
41 ef2214d7f448 2008-02-01 19:33 +0000 davis
|
476
506
|
* made exec, exec_prepared, send_query, and send_prepared with parameters
|
477
507
|
|
478
|
-
|
508
|
+
40 7303b8165a37 2008-02-01 18:29 +0000 davis
|
479
509
|
* Corrected a comment.
|
480
510
|
|
481
|
-
|
511
|
+
39 b3ad2112a91e 2008-01-31 22:11 +0000 davis
|
482
512
|
* removed duplicate definition of PGconn.open
|
483
513
|
|
484
|
-
|
514
|
+
38 ce9c0e52eec6 2008-01-31 21:41 +0000 davis
|
485
515
|
more test improvements
|
486
516
|
|
487
|
-
|
517
|
+
37 97cbdebaeb11 2008-01-31 21:19 +0000 davis
|
488
518
|
renamed pg_spec to pgconn_spec
|
489
519
|
|
490
|
-
|
520
|
+
36 1cb0537730bf 2008-01-31 21:00 +0000 davis
|
491
521
|
* Added some tests
|
492
522
|
|
493
|
-
|
523
|
+
35 29b827c7dbd0 2008-01-30 18:27 +0000 davis
|
494
524
|
* added PGconn.conndefaults
|
495
525
|
|
496
|
-
|
526
|
+
34 c18f38225bc7 2008-01-29 19:44 +0000 davis
|
497
527
|
corrected the tainting of some strings returned by the database
|
498
528
|
|
499
|
-
|
529
|
+
33 56cd8c6ee046 2008-01-29 17:50 +0000 davis
|
500
530
|
changed gem name from 'ruby-pg' to just 'pg'
|
501
531
|
|
502
|
-
|
532
|
+
32:30 a9097dead780 2008-01-28 21:19 +0000 davis
|
503
533
|
made a pg.gemspec so that people can build 'pg' gem
|
504
534
|
|
505
|
-
|
535
|
+
31:26 abfe9a457946 2008-01-28 18:50 +0000 davis
|
536
|
+
merged ruby-pg/trunk rev 104 with ruby-pg/branches/stable
|
537
|
+
|
538
|
+
30 cfdcfcd445ab 2008-01-26 00:20 +0000 davis
|
506
539
|
changed exception type for empty data structures
|
507
540
|
|
508
|
-
|
541
|
+
29 81cd03f8a2c3 2008-01-25 23:42 +0000 davis
|
509
542
|
* added PGconn#async_exec and alias PGconn#async_query
|
510
543
|
|
511
|
-
|
544
|
+
28 29d775393e88 2008-01-25 00:59 +0000 davis
|
512
545
|
added PGresult#cmdtuples as alias for PGresult#cmd_tuples
|
513
546
|
|
514
|
-
|
547
|
+
27:25 eac7df0aa291 2008-01-25 00:46 +0000 davis
|
515
548
|
Added:
|
516
549
|
|
517
|
-
|
550
|
+
26:24 c7ddb58579d3 2008-01-24 23:07 +0000 davis
|
551
|
+
moved a few minor changes over before release
|
552
|
+
|
553
|
+
25:23 7908e778e7c3 2008-01-24 23:00 +0000 davis
|
518
554
|
Added README.windows and README.OS_X
|
519
555
|
|
520
|
-
|
556
|
+
24:8 8df9da92380e 2008-01-24 18:45 +0000 davis
|
557
|
+
merged revision 77:HEAD of ruby-pg/trunk to ruby-pg/branches/stable
|
558
|
+
|
559
|
+
23 7cc13a1f3010 2008-01-24 17:48 +0000 davis
|
521
560
|
Another change to improve windows compatibility.
|
522
561
|
|
523
|
-
|
562
|
+
22 ee0577472b67 2008-01-24 02:07 +0000 davis
|
524
563
|
fixed typo
|
525
564
|
|
526
|
-
|
565
|
+
21 eaf3b1825d56 2008-01-24 02:05 +0000 davis
|
527
566
|
My previous fix for OS X compatibility didn't work well enough.
|
528
567
|
|
529
|
-
|
568
|
+
20 12b2568a0ada 2008-01-23 23:18 +0000 davis
|
530
569
|
* had to include that file conditionally
|
531
570
|
|
532
|
-
|
571
|
+
19 34dd04d21a78 2008-01-23 23:04 +0000 davis
|
533
572
|
* included an additional file so that it works with
|
534
573
|
|
535
|
-
|
574
|
+
18 4cf66b7302bf 2008-01-23 21:42 +0000 davis
|
536
575
|
* added PGconn.quote_ident to quote identifiers
|
537
576
|
|
538
|
-
|
577
|
+
17 081e4d8ee394 2008-01-22 18:48 +0000 davis
|
539
578
|
* made PGconn#query alias for PGconn#exec
|
540
579
|
|
541
|
-
|
580
|
+
16 4774578059e1 2008-01-22 17:52 +0000 davis
|
542
581
|
* Detect if compiling on OS X, and if so set $ARCHFLAGS correctly.
|
543
582
|
|
544
|
-
|
583
|
+
15 204f4b591614 2008-01-21 18:53 +0000 davis
|
545
584
|
made conn.block cleaner and it should be more portable.
|
546
585
|
|
547
|
-
|
586
|
+
14 449d54289f07 2008-01-18 18:10 +0000 davis
|
548
587
|
Miscellaneous changes:
|
549
588
|
|
550
|
-
|
589
|
+
13 aadd4008d2e3 2008-01-17 23:18 +0000 davis
|
551
590
|
started creating a rspec test, more tests to come later
|
552
591
|
|
553
|
-
|
592
|
+
12 4f276bb9c4b1 2008-01-17 23:11 +0000 davis
|
554
593
|
properly free memory in conn.get_copy_data
|
555
594
|
|
556
|
-
|
595
|
+
11 95d9ff13c269 2008-01-15 21:24 +0000 davis
|
557
596
|
Added conn.block( [ timeout ] ) -> Boolean
|
558
597
|
|
559
|
-
|
598
|
+
10 4cefa3b1ecbb 2008-01-14 23:23 +0000 davis
|
560
599
|
Added conn.transaction{ |conn| ... }
|
561
600
|
|
562
|
-
6 ae8c3b66c48d 2008-01-14 19:22 +0000 davis
|
601
|
+
9:6 ae8c3b66c48d 2008-01-14 19:22 +0000 davis
|
563
602
|
Support for PostgreSQL 7.3.
|
564
603
|
|
565
|
-
|
604
|
+
8 8eb1346cb9aa 2008-01-09 02:08 +0000 davis
|
605
|
+
removed extra directory that was left in the merge
|
606
|
+
|
607
|
+
7:0 d6d19e5371d4 2008-01-09 01:59 +0000 davis
|
608
|
+
merged ruby-pg/trunk rev 69 to ruby-pg/branches/stable
|
609
|
+
|
610
|
+
6 1fd8b2aaac4c 2008-01-08 23:19 +0000 davis
|
566
611
|
Added:
|
567
612
|
|
568
|
-
|
613
|
+
5 5c0a63028583 2008-01-08 22:26 +0000 davis
|
569
614
|
Added:
|
570
615
|
|
571
|
-
|
616
|
+
4 40270de77f48 2008-01-07 23:30 +0000 davis
|
572
617
|
fixed a few method defines for async query processing
|
573
618
|
|
574
|
-
|
619
|
+
3 d05d9f2042d7 2008-01-07 22:52 +0000 davis
|
575
620
|
Change conn.exec to use PQexec if no parameters are passed,
|
576
621
|
|
577
|
-
|
622
|
+
2 a531a7bc9241 2008-01-07 22:31 +0000 davis
|
578
623
|
Cleanup after the repository reorganization.
|
579
624
|
|
580
|
-
|
625
|
+
1:-1 aafc8cf17567 2008-01-07 22:16 +0000 davis
|
626
|
+
Split 'ruby-pg' module and 'postgres' module
|
627
|
+
|
628
|
+
0 7716d24a143b 2008-01-07 22:16 +0000 davis
|
581
629
|
Split 'ruby-pg' module and 'postgres' module
|
582
630
|
|