sequel_pg 1.6.7 → 1.6.8
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 +4 -4
- data/CHANGELOG +4 -0
- data/ext/sequel_pg/sequel_pg.c +2 -11
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 48ce48d22f24fee0f101e4dae022bb01d57003a0
|
|
4
|
+
data.tar.gz: c3fa2fabe8041c2a856a5da3bc502ab036be72fe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0cc9f69e3ecedecf67c8e761a8d24fd4c21fcd3f73316249d01f9ea94c8935dd1e8ac7873997dc5dcc089cf60f43c59c61c37d88a521a94a18b3631090ca8cda
|
|
7
|
+
data.tar.gz: 24a0b664aed503d15b567e29eec722da062cdcc63db8a5c625b3c392020c57b284aa4d2d127075b1e21fdf201fab6b5081938462419630acaa18fbb66cbb92ed
|
data/CHANGELOG
CHANGED
data/ext/sequel_pg/sequel_pg.c
CHANGED
|
@@ -12,7 +12,9 @@
|
|
|
12
12
|
#define ENC_INDEX
|
|
13
13
|
#endif
|
|
14
14
|
|
|
15
|
+
#ifndef SPG_MAX_FIELDS
|
|
15
16
|
#define SPG_MAX_FIELDS 256
|
|
17
|
+
#endif
|
|
16
18
|
#define SPG_MICROSECONDS_PER_DAY_LL 86400000000ULL
|
|
17
19
|
#define SPG_MICROSECONDS_PER_DAY 86400000000.0
|
|
18
20
|
#define SPG_MINUTES_PER_DAY 1440.0
|
|
@@ -41,17 +43,6 @@
|
|
|
41
43
|
#define SPG_YIELD_KMV_HASH_GROUPS 12
|
|
42
44
|
#define SPG_YIELD_MKMV_HASH_GROUPS 13
|
|
43
45
|
|
|
44
|
-
struct spg_row_proc_info {
|
|
45
|
-
VALUE dataset;
|
|
46
|
-
VALUE block;
|
|
47
|
-
VALUE model;
|
|
48
|
-
VALUE colsyms[SPG_MAX_FIELDS];
|
|
49
|
-
VALUE colconvert[SPG_MAX_FIELDS];
|
|
50
|
-
#if SPG_ENCODING
|
|
51
|
-
int enc_index;
|
|
52
|
-
#endif
|
|
53
|
-
};
|
|
54
|
-
|
|
55
46
|
static VALUE spg_Sequel;
|
|
56
47
|
static VALUE spg_Blob;
|
|
57
48
|
static VALUE spg_BigDecimal;
|
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.
|
|
4
|
+
version: 1.6.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jeremy Evans
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-
|
|
11
|
+
date: 2013-08-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pg
|
|
@@ -86,7 +86,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
86
86
|
version: '0'
|
|
87
87
|
requirements: []
|
|
88
88
|
rubyforge_project:
|
|
89
|
-
rubygems_version: 2.0.
|
|
89
|
+
rubygems_version: 2.0.3
|
|
90
90
|
signing_key:
|
|
91
91
|
specification_version: 4
|
|
92
92
|
summary: Faster SELECTs when using Sequel with pg
|