mulderr
mulderr
Encountered this as well, getting parser error. Apparently this is still unresolved. Would you accept a PR to fix this or add an option? But first, I'm not entirely sure...
Turns out the issue is not whether one can do it but whether one should because it violates RFC4180: ``` If fields are not enclosed with double quotes, then double...
The file is part of an official register containing units of territorial division, cities and streets in Poland called TERYT. You can find it [here](http://eteryt.stat.gov.pl/eTeryt/english.aspx?contrast=default). It's divided into 3 parts,...
Same problem with SUBSCRIBE.Request. Interestingly browsing through [AutobahnJS code](https://github.com/tavendo/AutobahnJS/blob/master/package/lib/session.js#L62) we can see that it uses a _single_ function for generating all request IDs and makes them all random: ``` javascript...
FYI [AutobahnCpp](https://github.com/tavendo/AutobahnCpp/blob/master/autobahn/autobahn.hpp#L421) goes the opposite way. It implements the recommendation and stores a counter for each session incrementing it for each request. No randomness. Thus it ignores _"Request is a...
It does not need a large number of outstanding requests when the IDs are sequential like they are in crossbar now. It needs one request sitting there for a really...
> I think the aproximation for a collision is 2^(n/2)? The numbers are low enough that you can actually calcuate this exactly. The collision probability `p(c)=1 - p(nc)` where `p(nc)`...
@meejah agreed, two integers would be a terrible hack WAMP wants to be language agnostic and it's not possible to rely on various languages providing integer types with high enough...
Ok, so if we are considering this, IMHO it would be best to follow the established practice of at least ~128 bits for globally unique IDs. IPv6 addresses and UUIDv4s...
Semantics of `runSelectReturningOne` is that you expect exactly one row. Multiple rows in that case is equivalent to no rows - something unexpected, something very wrong with your assumptions. That...