How to add row to JuliaDB table?

If the table doesn’t have primary keys, you can do: push!(rows(t), @NT(x = 0, y = 0)). If there are primary keys, the idea would be to push! the row to a buffer and only add the buffer to the table and re-sort it when it’s needed but it’s not implemented yet.

1 Like