WooKyoung Noh
WooKyoung Noh
thanks for the sharing.
it's not supported `Repo.insert!` with sql functions. you can debug the internal code at https://github.com/wookay/Octo.jl/blob/master/src/Backends/PostgreSQL.jl#L74 ``` function execute(prepared::String, nts::Vector{
hmm. currently it's not supported Repo.insert! with sql functions. see the above comment in 16 days ago.
you can open an issue and let's improve it slowly :) see some older closed issues. * How to use two or more databases at the same time? https://github.com/wookay/Octo.jl/issues/27 -...
could you help writing tests for duckdb. there's duckdb juliakpkg tests * https://github.com/duckdb/duckdb/tree/master/tools/juliapkg/test we can rewrite tests by using Octo Repo. * https://github.com/wookay/Octo.jl/blob/master/test/adapters/duckdb/repo_test.jl
@JuliaRegistrator register()
hi. this has reported on #86 could you run with master branch?
when you created the new image in the public folder, you must to update the routes by call `routes` again. ``` routes() do plug(Plug.Static, at="/", from=normpath(@__DIR__, "public")) end ```` I...
try again `routes` for every changes in public folder. ``` routes() do plug(Plug.Static, at="/", from=normpath(@__DIR__, "public")) end ``` you could `watch_folder`, `FolderMonitor` to update automatically. - https://docs.julialang.org/en/v1/stdlib/FileWatching/#FileWatching.watch_folder - https://github.com/wookay/Bukdu.jl/issues/47#issuecomment-397980725
Here's example like `AuthHandler` from HTTP.jl docs: https://juliaweb.github.io/HTTP.jl/stable/public_interface/#HTTP.Handlers ```julia using Bukdu using HTTP struct ExampleController "ok") function authenticate(c::ExampleController) req = c.conn.request if HTTP.hasheader(req, "Animal-UUID") uuid = HTTP.header(req, "Animal-UUID") if haskey(ANIMALS,...