Zac Medico
Zac Medico
Looks like this is the same root cause as https://github.com/prometheus/node_exporter/issues/1600.
> Have you tried running the debugger tests? ` ./tools/run-tests.py --jerry-debugger` for me this returned various errors which should be also fixed for Python 3. > > (I've did a...
https://github.com/vickyg3/UrlPlayer/pull/13 uses the media queue feature to implement a "Repeat" button.
In order to handle binary data, there will have to be a way for the client to specify [typed](https://godoc.org/database/sql/driver#Value) arguments for the [SQLiteConn.Exec](https://godoc.org/github.com/mattn/go-sqlite3#SQLiteConn.Exec) method. Since json can only contain text...
Actually, it might be possible to use [BLOB literals containing hexadecimal data](https://sqlite.org/lang_expr.html#hexint) to insert binary data, which is how it can be done at the sqlite3 prompt. I'll test that,...
BLOB literals containing hexadecimal data do work with rqlite, and query results return the binary data with base64 encoding.
Unfortunately, I doubt that BLOB literals are helpful for this `select 'other' as "x [bar]"` thing. This is the result from rqlite if we encode 'other' as hex: ``` 127.0.0.1:4001>...
It looks like the relevant C functions are documented here: https://www.sqlite.org/c3ref/column_database_name.html If go-sqlite3 doesn't provide some API to access these functions, then the API will have to be extended, like...
If possible, please add a Signed-off-by line to your commit message, as required by Gentoo's Certificate of Origin policy: https://www.gentoo.org/glep/glep-0076.html#certificate-of-origin
I prefer to handle fallbacks like this inside the C code. For example see 58d44d3f4549a45eac1ec9cc99d497bb104438c3 and dad9cce8a1e2360e8483e0f78e29e20bd5fdce49. Please strace the failure like in https://bugs.gentoo.org/641088#c8 so that we can see which...