do_postgres 0.10.13-x86-mingw32 → 0.10.14-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 CHANGED
@@ -1,7 +1,7 @@
1
- ---
2
- SHA1:
3
- data.tar.gz: 0dd3260ec7349f45ed54708f8f70990e02913c15
4
- metadata.gz: e1d92262604e27cffb26a1ff665f04fadb6357c5
5
- SHA512:
6
- data.tar.gz: cdd3e737aab5af089d2f69b9d86c286bc9277f756961045934798da49feef759192d074455795a47c8127bc0f9a93366c9b9ce175f801960713caa83f8d09cdc
7
- metadata.gz: d60c882f14ac584c5aa373732fc76ab36e814f394dfec1a7a12e1a17466a3e635d05a5323e617e7c734fb8b878411d72cfa9534bff86087f466da1502fc34ac1
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e8aea63fd7b130a376e9fefe2d37104ea14367a1
4
+ data.tar.gz: 9674f9333392813a821108d6d832d3e6645e0453
5
+ SHA512:
6
+ metadata.gz: 7915c14b01fef108ca120bc9acdd6eb322621ee1c94040c64566c6daddba7c15a9326daef440253348e8d49cf8b603f98f73a140b996ed70e5d2d73287a2c3f8
7
+ data.tar.gz: 82af1071cfde3f65e0229d17698680798aff4ad366aa822cc471d3a0aeebb5f9e052cd5c05611eaaf091644ed8a4956b30a6e1abfdb824dfef60e98661a5b3ad
data/ChangeLog.markdown CHANGED
@@ -1,3 +1,8 @@
1
+ ## 0.10.14 2014-02-13
2
+
3
+ * Don't do DNS lookup in transaction loading
4
+ * Set datestyle to ISO
5
+
1
6
  ## 0.10.13 2013-05-27
2
7
 
3
8
  * Fix segfault on invalid API usage
@@ -193,7 +193,7 @@ VALUE data_objects_parse_date(const char *date) {
193
193
  }
194
194
 
195
195
  VALUE data_objects_parse_time(const char *date) {
196
- static char const* const _fmt_datetime = "%4d-%2d-%2d %2d:%2d:%2d%7lf";
196
+ static char const* const _fmt_datetime = "%4d-%2d-%2d%*c%2d:%2d:%2d%7lf";
197
197
  int year = 0, month = 0, day = 0, hour = 0, min = 0, sec = 0, usec = 0;
198
198
  double subsec = 0;
199
199
 
@@ -440,6 +440,7 @@ void do_postgres_full_connect(VALUE self, PGconn *db) {
440
440
  const char *backslash_off = "SET backslash_quote = off";
441
441
  const char *standard_strings_on = "SET standard_conforming_strings = on";
442
442
  const char *warning_messages = "SET client_min_messages = warning";
443
+ const char *date_format = "SET datestyle = ISO";
443
444
  VALUE r_options;
444
445
 
445
446
  r_options = rb_str_new2(backslash_off);
@@ -463,6 +464,13 @@ void do_postgres_full_connect(VALUE self, PGconn *db) {
463
464
  rb_warn("%s", PQresultErrorMessage(result));
464
465
  }
465
466
 
467
+ r_options = rb_str_new2(date_format);
468
+ result = do_postgres_cCommand_execute(Qnil, self, db, r_options);
469
+
470
+ if (PQresultStatus(result) != PGRES_COMMAND_OK) {
471
+ rb_warn("%s", PQresultErrorMessage(result));
472
+ }
473
+
466
474
  VALUE encoding = rb_iv_get(self, "@encoding");
467
475
  #ifdef HAVE_PQSETCLIENTENCODING
468
476
  VALUE pg_encoding = rb_hash_aref(data_objects_const_get(mDO_PostgresEncoding, "MAP"), encoding);
Binary file
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  module DataObjects
2
2
  module Postgres
3
- VERSION = '0.10.13'
3
+ VERSION = '0.10.14'
4
4
  end
5
5
  end
data/tasks/compile.rake CHANGED
@@ -70,7 +70,7 @@ begin
70
70
  ext.classpath = '../do_jdbc/lib/do_jdbc_internal.jar'
71
71
  ext.java_compiling do |gem|
72
72
  gem.add_dependency 'jdbc-postgres', '>=8.2'
73
- gem.add_dependency 'do_jdbc', '0.10.13'
73
+ gem.add_dependency 'do_jdbc', '0.10.14'
74
74
  end
75
75
  end
76
76
  rescue LoadError
metadata CHANGED
@@ -1,57 +1,66 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: do_postgres
3
- version: !ruby/object:Gem::Version
4
- version: 0.10.13
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.10.14
5
5
  platform: x86-mingw32
6
- authors:
6
+ authors:
7
7
  - Dirkjan Bussink
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
-
12
- date: 2013-05-27 00:00:00 Z
13
- dependencies:
14
- - !ruby/object:Gem::Dependency
15
- version_requirements: &id001 !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "="
18
- - !ruby/object:Gem::Version
19
- version: 0.10.13
11
+ date: 2014-02-13 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
20
14
  name: data_objects
21
- requirement: *id001
22
- prerelease: false
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '='
18
+ - !ruby/object:Gem::Version
19
+ version: 0.10.14
23
20
  type: :runtime
24
- - !ruby/object:Gem::Dependency
25
- version_requirements: &id002 !ruby/object:Gem::Requirement
26
- requirements:
27
- - - ~>
28
- - !ruby/object:Gem::Version
29
- version: "2.5"
30
- name: rspec
31
- requirement: *id002
32
21
  prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '='
25
+ - !ruby/object:Gem::Version
26
+ version: 0.10.14
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '2.5'
33
34
  type: :development
34
- - !ruby/object:Gem::Dependency
35
- version_requirements: &id003 !ruby/object:Gem::Requirement
36
- requirements:
37
- - - ~>
38
- - !ruby/object:Gem::Version
39
- version: "0.7"
40
- name: rake-compiler
41
- requirement: *id003
42
35
  prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '2.5'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake-compiler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0.7'
43
48
  type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0.7'
44
55
  description: Implements the DataObjects API for PostgreSQL
45
56
  email: d.bussink@gmail.com
46
57
  executables: []
47
-
48
58
  extensions: []
49
-
50
- extra_rdoc_files:
59
+ extra_rdoc_files:
51
60
  - ChangeLog.markdown
52
61
  - LICENSE
53
62
  - README.markdown
54
- files:
63
+ files:
55
64
  - ChangeLog.markdown
56
65
  - LICENSE
57
66
  - README.markdown
@@ -64,6 +73,9 @@ files:
64
73
  - ext/do_postgres/extconf.rb
65
74
  - ext/do_postgres/pg_config.h
66
75
  - lib/do_postgres.rb
76
+ - lib/do_postgres/1.8/do_postgres.so
77
+ - lib/do_postgres/1.9/do_postgres.so
78
+ - lib/do_postgres/2.0/do_postgres.so
67
79
  - lib/do_postgres/encoding.rb
68
80
  - lib/do_postgres/transaction.rb
69
81
  - lib/do_postgres/version.rb
@@ -92,30 +104,25 @@ files:
92
104
  - tasks/release.rake
93
105
  - tasks/retrieve.rake
94
106
  - tasks/spec.rake
95
- - lib/do_postgres/1.8/do_postgres.so
96
- - lib/do_postgres/1.9/do_postgres.so
97
- - lib/do_postgres/2.0/do_postgres.so
98
107
  homepage:
99
108
  licenses: []
100
-
101
109
  metadata: {}
110
+ post_install_message: |2+
102
111
 
103
- post_install_message: |+
104
-
105
112
  ======================================================================================================
106
-
113
+
107
114
  You've installed the binary version of do_postgres.
108
115
  It was built using PostgreSQL version 8.4.12.
109
116
  It's recommended to use the exact same version to avoid potential issues.
110
-
117
+
111
118
  At the time of building this gem, the necessary DLL files where available
112
119
  in the following download:
113
-
120
+
114
121
  http://wwwmaster.postgresql.org/redir/107/h/binary/v8.4.12/win32/postgresql-8.4.12-1-windows-binaries.zip
115
-
122
+
116
123
  You can put the following files available in this package in your Ruby bin
117
124
  directory, for example C:\Ruby\bin
118
-
125
+
119
126
  - lib\libpq.dll
120
127
  - bin\ssleay32.dll
121
128
  - bin\libeay32.dll
@@ -125,30 +132,29 @@ post_install_message: |+
125
132
  - bin\comerr32.dll
126
133
  - bin\k5sprt32.dll
127
134
  - bin\gssapi32.dll
128
-
135
+
129
136
  ======================================================================================================
130
-
131
- rdoc_options: []
132
137
 
133
- require_paths:
138
+ rdoc_options: []
139
+ require_paths:
134
140
  - lib
135
- required_ruby_version: !ruby/object:Gem::Requirement
136
- requirements:
137
- - &id004
138
- - ">="
139
- - !ruby/object:Gem::Version
140
- version: "0"
141
- required_rubygems_version: !ruby/object:Gem::Requirement
142
- requirements:
143
- - *id004
141
+ required_ruby_version: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ required_rubygems_version: !ruby/object:Gem::Requirement
147
+ requirements:
148
+ - - ">="
149
+ - !ruby/object:Gem::Version
150
+ version: '0'
144
151
  requirements: []
145
-
146
152
  rubyforge_project: dorb
147
- rubygems_version: 2.0.3
153
+ rubygems_version: 2.2.0.preview.1
148
154
  signing_key:
149
155
  specification_version: 3
150
156
  summary: DataObjects PostgreSQL Driver
151
- test_files:
157
+ test_files:
152
158
  - spec/command_spec.rb
153
159
  - spec/connection_spec.rb
154
160
  - spec/encoding_spec.rb