You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What should the native image command line do if -e is missing? $> asami asami:mem://db-store -f db.edn for me throws Exception in thread "main" java.util.concurrent.ExecutionException: java.lang.IllegalArgumentException: No matching method put found taking 2 args for class java.nio.DirectLongBufferS
The text was updated successfully, but these errors were encountered:
This is very unexpected.
Right now, running that same command line against an EDN file will have it waiting on stdin without prompting you (if you type in a query it will respond). This is so queries can be piped into the program. Using the --interactive flag will prompt you.
The exception that you show is the unexpected part. Asami code does use buffers from java.nio but that only occurs when the database is in the asami:local: scheme, which is not what you specified.
There have been a couple of updates to the asami CLI since this bug was filed. Are you still seeing the issue?
What should the native image command line do if -e is missing?
$> asami asami:mem://db-store -f db.edn
for me throwsException in thread "main" java.util.concurrent.ExecutionException: java.lang.IllegalArgumentException: No matching method put found taking 2 args for class java.nio.DirectLongBufferS
The text was updated successfully, but these errors were encountered: