Created
September 17, 2015 13:17
-
-
Save kulbirsaini/1ec7b7f13ad13d04978f to your computer and use it in GitHub Desktop.
Example errors for https://github.com/rethinkdb/rethinkdb/issues/4819
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3) `changes` should return a feed: | |
ReqlRuntimeError: Query terminated by the `rethinkdb.jobs` table in: | |
r.db("3b3396afa97b9e4e88248305cf9a7437").table("32bf280b44b0aea4f55d0c01b1efd1ff") | |
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |
.changes() | |
^^^^^^^^^^ | |
at Connection._processResponse (lib/connection.js:241:21) | |
at Socket.<anonymous> (lib/connection.js:150:14) | |
at readableAddChunk (_stream_readable.js:146:16) | |
at Socket.Readable.push (_stream_readable.js:110:10) | |
at TCP.onread (net.js:523:20) | |
4) `changes` should work with squash: true: | |
ReqlRuntimeError: Query terminated by the `rethinkdb.jobs` table in: | |
r.db("3b3396afa97b9e4e88248305cf9a7437").table("32bf280b44b0aea4f55d0c01b1efd1ff") | |
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |
.changes({ | |
^^^^^^^^^^ | |
squash: true | |
^^^^^^^^^^^^ | |
}) | |
^^ | |
at Connection._processResponse (lib/connection.js:241:21) | |
at Socket.<anonymous> (lib/connection.js:150:14) | |
at readableAddChunk (_stream_readable.js:146:16) | |
at Socket.Readable.push (_stream_readable.js:110:10) | |
at TCP.onread (net.js:523:20) | |
5) `get.changes` should return a feed: | |
ReqlRuntimeError: Query terminated by the `rethinkdb.jobs` table in: | |
r.db("3b3396afa97b9e4e88248305cf9a7437").table("32bf280b44b0aea4f55d0c01b1efd1ff") | |
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |
.get(1).changes() | |
^^^^^^^^^^^^^^^^^ | |
at Connection._processResponse (lib/connection.js:241:21) | |
at Socket.<anonymous> (lib/connection.js:150:14) | |
at readableAddChunk (_stream_readable.js:146:16) | |
at Socket.Readable.push (_stream_readable.js:110:10) | |
at TCP.onread (net.js:523:20) | |
6) `orderBy.limit.changes` should return a feed: | |
ReqlRuntimeError: Query terminated by the `rethinkdb.jobs` table in: | |
r.db("3b3396afa97b9e4e88248305cf9a7437").table("32bf280b44b0aea4f55d0c01b1efd1ff") | |
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |
.orderBy({ | |
^^^^^^^^^^ | |
index: "id" | |
^^^^^^^^^^^ | |
}).limit(2).changes() | |
^^^^^^^^^^^^^^^^^^^^^ | |
at Connection._processResponse (lib/connection.js:241:21) | |
at Socket.<anonymous> (lib/connection.js:150:14) | |
at readableAddChunk (_stream_readable.js:146:16) | |
at Socket.Readable.push (_stream_readable.js:110:10) | |
at TCP.onread (net.js:523:20) | |
7) `next` should work on a feed: | |
ReqlRuntimeError: Query terminated by the `rethinkdb.jobs` table in: | |
r.db("3b3396afa97b9e4e88248305cf9a7437").table("268524ec7001709683441e31832b26c8") | |
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |
.changes() | |
^^^^^^^^^^ | |
at Connection._processResponse (lib/connection.js:241:21) | |
at Socket.<anonymous> (lib/connection.js:150:14) | |
at readableAddChunk (_stream_readable.js:146:16) | |
at Socket.Readable.push (_stream_readable.js:110:10) | |
at TCP.onread (net.js:523:20) | |
8) `next` should work on an atom feed: | |
ReqlRuntimeError: Query terminated by the `rethinkdb.jobs` table in: | |
r.db("3b3396afa97b9e4e88248305cf9a7437").table("268524ec7001709683441e31832b26c8") | |
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |
.get("7e06d53ffdbdefe0980e6c021eb1b3c5").changes() | |
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |
at Connection._processResponse (lib/connection.js:241:21) | |
at Socket.<anonymous> (lib/connection.js:150:14) | |
at readableAddChunk (_stream_readable.js:146:16) | |
at Socket.Readable.push (_stream_readable.js:110:10) | |
at TCP.onread (net.js:523:20) | |
10) `on` should work on feed: | |
ReqlRuntimeError: Query terminated by the `rethinkdb.jobs` table in: | |
r.db("3b3396afa97b9e4e88248305cf9a7437").table("268524ec7001709683441e31832b26c8") | |
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |
.changes() | |
^^^^^^^^^^ | |
at Connection._processResponse (lib/connection.js:241:21) | |
at Socket.<anonymous> (lib/connection.js:150:14) | |
at readableAddChunk (_stream_readable.js:146:16) | |
at Socket.Readable.push (_stream_readable.js:110:10) | |
at TCP.onread (net.js:523:20) | |
11) `next`, `each`, `toArray` should be deactivated if the EventEmitter interface is used: | |
ReqlRuntimeError: Query terminated by the `rethinkdb.jobs` table in: | |
r.db("3b3396afa97b9e4e88248305cf9a7437").table("268524ec7001709683441e31832b26c8") | |
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |
.changes() | |
^^^^^^^^^^ | |
at Connection._processResponse (lib/connection.js:241:21) | |
at Socket.<anonymous> (lib/connection.js:150:14) | |
at readableAddChunk (_stream_readable.js:146:16) | |
at Socket.Readable.push (_stream_readable.js:110:10) | |
at TCP.onread (net.js:523:20) | |
12) `each` should not return an error if the feed is closed - 1: | |
ReqlRuntimeError: Query terminated by the `rethinkdb.jobs` table in: | |
r.db("3b3396afa97b9e4e88248305cf9a7437").table("268524ec7001709683441e31832b26c8") | |
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |
.changes() | |
^^^^^^^^^^ | |
at Connection._processResponse (lib/connection.js:241:21) | |
at Socket.<anonymous> (lib/connection.js:150:14) | |
at readableAddChunk (_stream_readable.js:146:16) | |
at Socket.Readable.push (_stream_readable.js:110:10) | |
at TCP.onread (net.js:523:20) | |
13) `each` should not return an error if the feed is closed - 2: | |
ReqlRuntimeError: Query terminated by the `rethinkdb.jobs` table in: | |
r.db("3b3396afa97b9e4e88248305cf9a7437").table("268524ec7001709683441e31832b26c8") | |
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |
.changes() | |
^^^^^^^^^^ | |
at Connection._processResponse (lib/connection.js:241:21) | |
at Socket.<anonymous> (lib/connection.js:150:14) | |
at readableAddChunk (_stream_readable.js:146:16) | |
at Socket.Readable.push (_stream_readable.js:110:10) | |
at TCP.onread (net.js:523:20) | |
14) events should not return an error if the feed is closed - 1: | |
ReqlRuntimeError: Query terminated by the `rethinkdb.jobs` table in: | |
r.db("3b3396afa97b9e4e88248305cf9a7437").table("268524ec7001709683441e31832b26c8") | |
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |
.get(1).changes() | |
^^^^^^^^^^^^^^^^^ | |
at Connection._processResponse (lib/connection.js:241:21) | |
at Socket.<anonymous> (lib/connection.js:150:14) | |
at readableAddChunk (_stream_readable.js:146:16) | |
at Socket.Readable.push (_stream_readable.js:110:10) | |
at TCP.onread (net.js:523:20) | |
15) events should not return an error if the feed is closed - 2: | |
ReqlRuntimeError: Query terminated by the `rethinkdb.jobs` table in: | |
r.db("3b3396afa97b9e4e88248305cf9a7437").table("268524ec7001709683441e31832b26c8") | |
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |
.changes() | |
^^^^^^^^^^ | |
at Connection._processResponse (lib/connection.js:241:21) | |
at Socket.<anonymous> (lib/connection.js:150:14) | |
at readableAddChunk (_stream_readable.js:146:16) | |
at Socket.Readable.push (_stream_readable.js:110:10) | |
at TCP.onread (net.js:523:20) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment