Dean De Leo
Dean De Leo
Type Any
Can you insert another ProtoBuf message inside a field of type Any? If so, how? The [google doc](https://developers.google.com/protocol-buffers/docs/proto3#any) refers that this depends on the target language.
Hi, in the help screen, when the description contains a carriage return (\n), the library prints it in the middle of the column. This causes the overall content to be...
e.g. ``` mux( method("GET", route("path/to/this", handle_1)), method("POST", route("path/to/that", handle_2)), notfound(), ) ```
The facility to handle exceptions with matherr has been removed on glibc 2.27, see http://man7.org/linux/man-pages/man3/matherr.3.html This patch disables the usage of this mechanism in the code with the newer versions...
Values containing commas are always split into an array. I wish there was a way to escape commas or treat the whole value as a literal? e,g. key="a, b, c"...
Hi there, as I've repeated another round of our internal experiments, I noticed a regression compared to the results I obtained back in February. For instance I am accounting a...
Can you remove a vertex from the graph once it has been created. If so, how? The method `g->get_typekv()->str2vid.erase( )` only removes the mapping between the external vertex identifier and...
It shouldn't be mandatory to specify the AccountName in the [azure connection string](https://github.com/duckdb/duckdb_azure/blob/19077664332a8c13c04190e4bc25592de24a15f1/src/azure_storage_account_client.cpp#L51): ``` auto storage_account_name_pos = connection_string.find("AccountName="); if (storage_account_name_pos == std::string::npos) { throw InvalidInputException("A invalid connection string has been...
### What happens? As posted on Discord, importing a database with multiple definitions does not seem to be supported within the Julia API, or is there a specific command to...
### What happens? (EDIT: When running the Julia VM with multiple threads), closing the connection to the database, through either `DuckDB.close()` or `DBInterface.close()`, the underlying lock file is not released...