monetdb 0.2.4 → 0.2.5
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 +8 -8
- data/CHANGELOG.rdoc +4 -0
- data/VERSION +1 -1
- data/lib/monetdb/connection/query.rb +1 -0
- data/lib/monetdb/connection/query/table.rb +0 -1
- data/lib/monetdb/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ODM3YzUyZmYzNDNlNDUzNTI2ODgzNzU1NTEyMjM5MDM0M2NlYzM0YQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NDU5OWZhZTdhZmM5M2NjYmU1NmExNzdjNzQyZDdmZTc1ZThjNzM3YQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MmJjMjBmNjg4ZWQzZmI0YzM0YjEwNGNhMzNjMjcwMmFiMDBiZjIxNTQwZWU1
|
10
|
+
OGQzOGE3OTVkMWZhZTA4MzY2YjExZTgzODY5NWY4YjdmZTBlN2VkYzI4YTM5
|
11
|
+
MDcxOTAxYTljOGFkNDVkNDg2ZTg2Y2YxZGE5MTE3YjJhMzhmZWY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MTU2YjhmZDEyZmE2ZTZlNzQyNGE0ZTQ3Y2VmMzg3YzQyZDFjOTFjOTlmNTJm
|
14
|
+
ZWFhZDgxMDJhMjUxZDExMDA1YjEzMzU5OWFjY2FjMGIzNTFiNTJhOGUzNjAx
|
15
|
+
MDcyZWNiMDAwMDI4OTcxZWI2NDZiY2UwNjlhYzliYWIwMDZlZmQ=
|
data/CHANGELOG.rdoc
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.5
|
@@ -5,7 +5,6 @@ module MonetDB
|
|
5
5
|
|
6
6
|
def parse_table_response(query_header, table_header, response)
|
7
7
|
unless query_header[:rows] == response.size
|
8
|
-
disconnect if reconnect?
|
9
8
|
raise QueryError, "Amount of fetched rows does not match header value (#{response.size} instead of #{query_header[:rows]})"
|
10
9
|
end
|
11
10
|
parse_table_rows query_header, table_header, response.join("\n")
|
data/lib/monetdb/version.rb
CHANGED