taps 0.3.0 → 0.3.1

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.
Files changed (4) hide show
  1. data/TODO +1 -0
  2. data/VERSION.yml +3 -3
  3. data/lib/taps/data_stream.rb +1 -1
  4. metadata +5 -3
data/TODO ADDED
@@ -0,0 +1 @@
1
+ * Detect incompatible Marshal versions
data/VERSION.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
- :build:
3
- :minor: 3
4
- :patch: 0
5
2
  :major: 0
3
+ :minor: 3
4
+ :build:
5
+ :patch: 1
@@ -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
- - 0
9
- version: 0.3.0
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-14 00:00:00 -07:00
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: []