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
$ ~/Downloads/kuzu-0.8.0 test
Opening the database at path: test in read-write mode.
Enter ":help" for usage hints.
kuzu> CREATE NODE TABLE User (name STRING, age INT64 DEFAULT 0, reg_date DATE, PRIMARY KEY (name));
┌──────────────────────────────┐
│ result │
│ STRING │
├──────────────────────────────┤
│ Table User has been created. │
└──────────────────────────────┘
(1 tuple)
(1 column)
Time: 18.61ms (compiling), 11.47ms (executing)
kuzu> CREATE REL TABLE Follows(FROM User TO User, since DATE);
┌─────────────────────────────────┐
│ result │
│ STRING │
├─────────────────────────────────┤
│ Table Follows has been created. │
└─────────────────────────────────┘
(1 tuple)
(1 column)
Time: 2.73ms (compiling), 3.90ms (executing)
kuzu> :quit
$ ~/Downloads/kuzu-0.8.1 test
Runtime exception: Reading past the end of the file /tmp/test/test/catalog.kz with size 626 at offset 626
$ ~/Downloads/kuzu-0.8.2 test
Runtime exception: Reading past the end of the file /tmp/test/test/catalog.kz with size 626 at offset 626
Are there known steps to reproduce?
No response
The text was updated successfully, but these errors were encountered:
Thanks for reporting! We are aware of this bug. v0.8.1 accidentally introduced a storage change that leads to incompatible storage. However, some platform does not allow reverting a released version. So we are trying to release a new version 0.9 #5062 soon.
Hi @adsharma as a temporary workaround, you could use the migrate feature to move your data from 0.8.0 to 0.8.2 if you want to use the latest version: https://docs.kuzudb.com/migrate/
Kuzu version
v0.8.2
What operating system are you using?
Ubuntu 24.04
What happened?
Are there known steps to reproduce?
No response
The text was updated successfully, but these errors were encountered: