Patrik Wenger
Patrik Wenger
Same on macOS :(
@solnic Did something to fix this behavior make it into rom 5.0 / rom-sql 3.0? I'd like to avoid an additional `SELECT` query after a `:create` command.
I agree. For example updating nerd-fonts takes forever (and A LOT of space) because that repo is huge AND has a lot of stale branches. `--no-single-branch` was the issue. I...
@solnic I'm not sure if I understand correctly. I'm assuming by _loading_ you mean the registration of the class in the config? The table creation is in a class method,...
The thing is that this error (failed to infer DB schema and thus methods like `#by_path` missing) also occured when the table already existed.
This was the DB schema: ``` sqlite3 current_cases.sqlite3 ".schema" CREATE TABLE `current_cases` (`id` integer NOT NULL PRIMARY KEY AUTOINCREMENT, `path` varchar(255) NOT NULL UNIQUE, `object` blob NOT NULL); ``` Sometimes...
Yeah using `Sequel.blob` it works: ```ruby records = Array.new(n) do { name: SecureRandom.uuid, settings: Sequel.blob(Marshal.dump({})) } end ``` `ROM::SQL::Relation::Writing#multi_insert` is defined as `@api public`, so I'd still treat this as...
I get the same issue in an Ubuntu 20.04 VM on macOS. The `Error binding a server socket: Address already in use` gets logged but `UA_Server_run_startup()` still returns `UA_STATUSCODES_GOOD`. I'm...
Good idea. I tried to implement that. It seems to work fine if the host is unreachable. But if it's reachable, I get `#` from the `return` statement in `SNMP::Manager#try_request`....
Async does not define `Async::Task#raise`. I just tried calling it and it raised `NoMethodError` because that's `Kernel#raise`. I tried to use `Async::Task#fail!` to do this, which looked okay, but when...