taps 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- data/TODO +1 -0
- data/VERSION.yml +3 -3
- data/lib/taps/data_stream.rb +1 -1
- metadata +5 -3
data/VERSION.yml
CHANGED
data/lib/taps/data_stream.rb
CHANGED
@@ -255,7 +255,7 @@ class DataStreamKeyed < DataStream
|
|
255
255
|
# we have to use local variables in order for the virtual row filter to work correctly
|
256
256
|
key = primary_key
|
257
257
|
buf_limit = buffer_limit
|
258
|
-
ds = table.order(*order_by).filter { key > buf_limit }.limit(limit)
|
258
|
+
ds = table.order(*order_by).filter { key.sql_number > buf_limit }.limit(limit)
|
259
259
|
log.debug "DataStreamKeyed#load_buffer SQL -> #{ds.sql}"
|
260
260
|
data = ds.all
|
261
261
|
self.buffer += data
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 3
|
8
|
-
-
|
9
|
-
version: 0.3.
|
8
|
+
- 1
|
9
|
+
version: 0.3.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Ricardo Chimal, Jr.
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-04-
|
17
|
+
date: 2010-04-15 00:00:00 -07:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
@@ -111,6 +111,7 @@ extensions: []
|
|
111
111
|
extra_rdoc_files:
|
112
112
|
- LICENSE
|
113
113
|
- README.rdoc
|
114
|
+
- TODO
|
114
115
|
files:
|
115
116
|
- LICENSE
|
116
117
|
- README.rdoc
|
@@ -136,6 +137,7 @@ files:
|
|
136
137
|
- spec/operation_spec.rb
|
137
138
|
- spec/server_spec.rb
|
138
139
|
- spec/utils_spec.rb
|
140
|
+
- TODO
|
139
141
|
has_rdoc: true
|
140
142
|
homepage: http://github.com/ricardochimal/taps
|
141
143
|
licenses: []
|