sequel_pg 1.6.9 → 1.6.10

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: 3556c5dfc6db113463c57cd49469d064f447e01b
4
- data.tar.gz: 6eb1cdb2a7f1d4e318f8394cdb0509d92b5d3f3b
3
+ metadata.gz: 25ed02f0ee78100daa444ad371dce7a81fb6302c
4
+ data.tar.gz: 070c5284bfcddd9b1901be3b78c7b3166129b68e
5
5
  SHA512:
6
- metadata.gz: adec65dceb15d195270a9708d96505f368d0eb8efc560008f288be8ffae413e1e2865c06c254cab50d2e5c7a7c30f996598482031663995bfac851834cc962f3
7
- data.tar.gz: 8d6c8d0d172793964d062bdcbd9742c75da0efe1e8d5fc81fa4e3729badd72f79a9297645f15e06440ae966c7bd9ec50da5cd8f8b79520714456dc24e9cf1c1e
6
+ metadata.gz: d5d073fee789e59e7e83594f3f6190611a6a57eef47c55eebe1d734b588cf2a2410d3dc5ae303438d8e7038b27c1dd014c818c90175c7992fdcc89c8ac6e17a0
7
+ data.tar.gz: dfd7e4b7eb0604b3cb7e90cd1629a1283e533ba8b123b4c22b9f0e62e71632e11ce9615745023a2cbad02d6bf5db536c741c2add1f81a99a5fa464cb66629900
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ === 1.6.10 (2014-07-11)
2
+
3
+ * Work correctly when the database timezone is not a named timezone but the application timezone is (jeremyevans)
4
+
1
5
  === 1.6.9 (2014-03-05)
2
6
 
3
7
  * When using the streaming extension, automatically use streaming to implement paging in Dataset#paged_each (jeremyevans)
data/README.rdoc CHANGED
@@ -107,6 +107,11 @@ you should modify the maximum supported number of columns via:
107
107
 
108
108
  gem install sequel_pg -- --with-cflags=\"-DSPG_MAX_FIELDS=512\"
109
109
 
110
+ Make sure the pg_config binary is in your PATH so the installation
111
+ can find the PostgreSQL shared library and header files. Alternatively,
112
+ you can use the POSTGRES_LIB and POSTGRES_INCLUDE environment
113
+ variables to specify the shared library and header directories.
114
+
110
115
  == Running the specs
111
116
 
112
117
  sequel_pg doesn't ship with it's own specs. It's designed to
@@ -309,6 +309,17 @@ static VALUE spg_timestamp(const char *s, VALUE self) {
309
309
  }
310
310
  }
311
311
 
312
+ rtz = rb_funcall(spg_Sequel, spg_id_application_timezone, 0);
313
+ if (rtz != Qnil) {
314
+ if (rtz == spg_sym_local) {
315
+ tz += SPG_APP_LOCAL;
316
+ } else if (rtz == spg_sym_utc) {
317
+ tz += SPG_APP_UTC;
318
+ } else {
319
+ return rb_funcall(db, spg_id_to_application_timestamp, 1, rb_str_new2(s));
320
+ }
321
+ }
322
+
312
323
  if (0 != strchr(s, '.')) {
313
324
  tokens = sscanf(s, "%d-%2d-%2d %2d:%2d:%2d.%n%d%n%c%02d:%02d",
314
325
  &year, &month, &day, &hour, &min, &sec,
@@ -337,14 +348,7 @@ static VALUE spg_timestamp(const char *s, VALUE self) {
337
348
  offset_minute *= -1;
338
349
  }
339
350
 
340
- /* Get values of datetime_class, database_timezone, and application_timezone */
341
351
  dtc = rb_funcall(spg_Sequel, spg_id_datetime_class, 0);
342
- rtz = rb_funcall(spg_Sequel, spg_id_application_timezone, 0);
343
- if (rtz == spg_sym_local) {
344
- tz += SPG_APP_LOCAL;
345
- } else if (rtz == spg_sym_utc) {
346
- tz += SPG_APP_UTC;
347
- }
348
352
 
349
353
  if (dtc == rb_cTime) {
350
354
  if (offset_sign) {
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.9
4
+ version: 1.6.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Evans
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-05 00:00:00.000000000 Z
11
+ date: 2014-07-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pg