do_postgres 0.10.4.rc2-java → 0.10.5-java
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.
- data/ChangeLog.markdown +22 -0
- data/ext/do_postgres/do_common.c +2 -2
- data/lib/do_postgres/do_postgres.jar +0 -0
- data/lib/do_postgres/version.rb +1 -1
- data/tasks/compile.rake +1 -1
- metadata +10 -13
data/ChangeLog.markdown
CHANGED
@@ -1,3 +1,25 @@
|
|
1
|
+
## 0.10.5 2011-05-03
|
2
|
+
|
3
|
+
No changes
|
4
|
+
|
5
|
+
## 0.10.4 2011-04-28
|
6
|
+
|
7
|
+
New features
|
8
|
+
* Add save point to transactions (all)
|
9
|
+
* JRuby 1.9 mode support (encodings etc.)
|
10
|
+
|
11
|
+
Bugfixes
|
12
|
+
* Fix segfault when no tuples are returned from a non select statement (do\_postgres)
|
13
|
+
* Fix bug when using nested transactions in concurrent scenarios (all)
|
14
|
+
* Use column aliases instead of names (jruby)
|
15
|
+
* DST calculation fixes (all)
|
16
|
+
* Fix handling sub second precision for Time objects (do\_postgres)
|
17
|
+
|
18
|
+
Other
|
19
|
+
* Refactor to DRY up the adapters (all)
|
20
|
+
* Many style fixes
|
21
|
+
* Switch back to RSpec
|
22
|
+
|
1
23
|
## 0.10.3 2011-01-30
|
2
24
|
* Reworked transactions
|
3
25
|
* Fix a DST bug that could cause datetimes in the wrong timezone
|
data/ext/do_postgres/do_common.c
CHANGED
@@ -209,8 +209,8 @@ VALUE parse_time(const char *date) {
|
|
209
209
|
}
|
210
210
|
|
211
211
|
VALUE parse_date_time(const char *date) {
|
212
|
-
static char const* const _fmt_datetime_tz_normal = "%4d-%2d-%2d
|
213
|
-
static char const* const _fmt_datetime_tz_subsec = "%4d-%2d-%2d
|
212
|
+
static char const* const _fmt_datetime_tz_normal = "%4d-%2d-%2d%*c%2d:%2d:%2d%3d:%2d";
|
213
|
+
static char const* const _fmt_datetime_tz_subsec = "%4d-%2d-%2d%*c%2d:%2d:%2d.%*d%3d:%2d";
|
214
214
|
int tokens_read;
|
215
215
|
const char *fmt_datetime;
|
216
216
|
|
Binary file
|
data/lib/do_postgres/version.rb
CHANGED
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.
|
73
|
+
gem.add_dependency 'do_jdbc', '0.10.5'
|
74
74
|
end
|
75
75
|
end
|
76
76
|
rescue LoadError
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: do_postgres
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 61
|
5
|
+
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 10
|
9
|
-
-
|
10
|
-
|
11
|
-
version: 0.10.4.rc2
|
9
|
+
- 5
|
10
|
+
version: 0.10.5
|
12
11
|
platform: java
|
13
12
|
authors:
|
14
13
|
- Dirkjan Bussink
|
@@ -25,13 +24,12 @@ dependencies:
|
|
25
24
|
requirements:
|
26
25
|
- - "="
|
27
26
|
- !ruby/object:Gem::Version
|
28
|
-
hash:
|
27
|
+
hash: 61
|
29
28
|
segments:
|
30
29
|
- 0
|
31
30
|
- 10
|
32
|
-
-
|
33
|
-
|
34
|
-
version: 0.10.4.rc2
|
31
|
+
- 5
|
32
|
+
version: 0.10.5
|
35
33
|
type: :runtime
|
36
34
|
name: data_objects
|
37
35
|
prerelease: false
|
@@ -87,13 +85,12 @@ dependencies:
|
|
87
85
|
requirements:
|
88
86
|
- - "="
|
89
87
|
- !ruby/object:Gem::Version
|
90
|
-
hash:
|
88
|
+
hash: 61
|
91
89
|
segments:
|
92
90
|
- 0
|
93
91
|
- 10
|
94
|
-
-
|
95
|
-
|
96
|
-
version: 0.10.4.rc2
|
92
|
+
- 5
|
93
|
+
version: 0.10.5
|
97
94
|
type: :runtime
|
98
95
|
name: do_jdbc
|
99
96
|
prerelease: false
|