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
To reveal the root cause, change the ~/.dynein/cache.yml.
❯ cat ~/.dynein/cache.yml
---
tables:
local/issue:
region: local
name: issue
pk:
name: pk
kind: N
sk: ~
indexes: ~
mode: OnDemand
❯ dy put 1
Successfully put an item to the table 'issue'.
The text was updated successfully, but these errors were encountered:
We should update the table cache after creating a table and delete the cache after deleting a table.
Due to the lack of the above update, dynein raises an unintended error when you take the following steps:
dy admin create table issue --keys pk,S
.dy use issue
.dy admin delete table --yes issue
.dy admin create table issue --keys pk,N
.dy put 1
.The above steps raise the following error message.
The final state is as follows:
To reveal the root cause, change the
~/.dynein/cache.yml
.The text was updated successfully, but these errors were encountered: