You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pretty simple, seems like a encoding issue with regards to fancy quotes, e.g. “
To reproduce: yield r.table('topics').insert({caption: '“'}, {returnVals: true}).run()
ReqlClientError: Client is buggy (failed to deserialize query).
at Connection._processResponse (/Users/chrismcc/workspace/ti-node/node_modules/rethinkdbdash/lib/connection.js:144:35)
at Socket.<anonymous> (/Users/chrismcc/workspace/ti-node/node_modules/rethinkdbdash/lib/connection.js:102:22)
at Socket.EventEmitter.emit (events.js:107:17)
at readableAddChunk (_stream_readable.js:159:16)
at Socket.Readable.push (_stream_readable.js:126:10)
at TCP.onread (net.js:514:20)
From previous event:
at new Promise (/Users/chrismcc/workspace/ti-node/node_modules/rethinkdbdash/node_modules/bluebird/js/main/promise.js:82:37)
at Term.run (/Users/chrismcc/workspace/ti-node/node_modules/rethinkdbdash/lib/term.js:90:21)
at /Users/chrismcc/workspace/ti-node/test.js:5:98
at GeneratorFunctionPrototype.next (native)
at next (/Users/chrismcc/workspace/ti-node/node_modules/co/index.js:83:21)
at /Users/chrismcc/workspace/ti-node/node_modules/co/index.js:56:5
at Object.<anonymous> (/Users/chrismcc/workspace/ti-node/test.js:6:3)
at Module._compile (module.js:449:26)
at Object.Module._extensions..js (module.js:467:10)
at Module.load (module.js:349:32)
at Function.Module._load (module.js:305:12)
at Function.Module.runMain (module.js:490:10)
at startup (node.js:124:16)
at node.js:807:3'
I think this is an issue with rethinkdbdash because the same query works fine in the data explorer.
The text was updated successfully, but these errors were encountered:
Ah I know what's going on.
It's basically the same bug as rethinkdb/rethinkdb#2446
I just forgot to do the same in rethinkdbdash. I'll fix it sometime today.
Pretty simple, seems like a encoding issue with regards to fancy quotes, e.g.
“
To reproduce:
yield r.table('topics').insert({caption: '“'}, {returnVals: true}).run()
I think this is an issue with rethinkdbdash because the same query works fine in the data explorer.
The text was updated successfully, but these errors were encountered: