Now that Homebrew has upgraded SpatiaLite on my laptop to 5.0 this tool seems to be creating databases that aren't compatible with SpatiaLite 4.3.x - which currently breaks datasette publish (see simonw/datasette#1249).
I think the problem is that a KNN virtual table is being created - CREATE VIRTUAL TABLE KNN USING VirtualKNN();
Since the databases created by this tool don't necessarily need KNN it would be better if it didn't create that.
Now that Homebrew has upgraded SpatiaLite on my laptop to 5.0 this tool seems to be creating databases that aren't compatible with SpatiaLite 4.3.x - which currently breaks
datasette publish(see simonw/datasette#1249).I think the problem is that a
KNNvirtual table is being created -CREATE VIRTUAL TABLE KNN USING VirtualKNN();Since the databases created by this tool don't necessarily need
KNNit would be better if it didn't create that.