sequel_pg 1.6.12 → 1.6.13

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e9f33b8c063b997f88c569ae9a480f7575f766be
4
- data.tar.gz: e0e64e1c8c71b7aa7bb5cf1f64c6becbb6cb1e22
3
+ metadata.gz: e8104080b7db1a481d297cc9d19e77725ba72904
4
+ data.tar.gz: eaa3df5bb5d4318dd3bb15d5b5640bcca048f97a
5
5
  SHA512:
6
- metadata.gz: 429c0c48d6237fd29b6e264a9f3f784aceba55c63080013007bac52a72e1732ceb3b994b769b520d7ab18be2677d420012576620801186588607215a6bdac518
7
- data.tar.gz: 840839a0691d1c6ed99841065da6394d25dae91fb7af17bc67bb5d6ad848b19000704620e270a2e17f7e54623e8067e158be3dc7c61e9066cd8a2f03b99588fd
6
+ metadata.gz: 2e68206b634546f858e6161f8d2a67591d470b6d8b1f74a7d93523d992fc2fa43d4f00e132797e9029b03dd4025c7582e16744f2a174846b7be2bd9e25c71037
7
+ data.tar.gz: d463c3bcd342ac9e9fc219bbcc751630ef557113ba07a0106f51be25f19d364ff4851418025eee66b1045244205ca72772c39c8ad79d848247641ad102b71bfe
data/CHANGELOG CHANGED
@@ -1,3 +1,9 @@
1
+ === 1.6.13 (2015-06-29)
2
+
3
+ * Fix Dataset#paged_each when called with no arguments (jeremyevans)
4
+
5
+ * Remove handling of int2vector type (jeremyevans)
6
+
1
7
  === 1.6.12 (2015-03-23)
2
8
 
3
9
  * Fix segfault when Dataset#yield_hash_rows is passed a nil value when using ruby pg 0.18+ (jeremyevans) (#19)
@@ -178,9 +178,9 @@ sequel_pg has been tested on the following:
178
178
  * sequel_pg currently calls functions defined in the pg gem, which
179
179
  does not work on Windows and does not work in some unix-like
180
180
  operating systems that disallow undefined functions in shared
181
- libraries. If <tt>RbConfig::Config['LDFLAGS']</tt> contains
181
+ libraries. If <tt>RbConfig::CONFIG['LDFLAGS']</tt> contains
182
182
  <tt>-Wl,--no-undefined</tt>, you'll probably have issues installing
183
- sequel_pg. You should probably fix <tt>RbConfig::Config['LDFLAGS']</tt>
183
+ sequel_pg. You should probably fix <tt>RbConfig::CONFIG['LDFLAGS']</tt>
184
184
  in that case.
185
185
 
186
186
  == Author
@@ -579,7 +579,6 @@ static void spg_set_column_info(VALUE self, PGresult *res, VALUE *colsyms, VALUE
579
579
  case 17:
580
580
  case 20:
581
581
  case 21:
582
- case 22:
583
582
  case 23:
584
583
  case 26:
585
584
  case 700:
@@ -104,7 +104,7 @@ module Sequel::Postgres::Streaming
104
104
  end
105
105
 
106
106
  # Use streaming to implement paging.
107
- def paged_each(opts=OPTS, &block)
107
+ def paged_each(opts=Sequel::OPTS, &block)
108
108
  stream.each(&block)
109
109
  end
110
110
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sequel_pg
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.12
4
+ version: 1.6.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Evans
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-03-23 00:00:00.000000000 Z
11
+ date: 2015-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pg