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
If a user is trying to access a dev version of a Kùzu database whose storage version isn't compatible with the release build of Kùzu Explorer, the UI doesn't show a helpful error message. AN example is shown below:
[21:26:57.994] INFO (1): Access mode: READ_WRITE [21:26:58.019] ERROR (1): Error getting version of Kùzu: Error: std::bad_alloc
We should show a more helpful error message, similar to how we do in our CLI to inform the user that they should use a format of Kùzu that's compatible with the database storage version.
The text was updated successfully, but these errors were encountered:
For each stable release, we manually update this dictionary to add the version number of kuzu and storage. But since each dev build is automatically built and deployed, it does not get its own storage version number. Instead, it simply assumes that it has the latest storage version number in the dictionary.
BTW, Paco faced the exact same issue yesterday, so it's clear that we have to document this on our Kùzu Explorer page so that people know that the dev build doesn't have version numbers. I'll track this as an issue there.
If a user is trying to access a
dev
version of a Kùzu database whose storage version isn't compatible with the release build of Kùzu Explorer, the UI doesn't show a helpful error message. AN example is shown below:We should show a more helpful error message, similar to how we do in our CLI to inform the user that they should use a format of Kùzu that's compatible with the database storage version.
The text was updated successfully, but these errors were encountered: