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
After submitting an order via UI, I checked data in Cassandra via cqlsh. Taco information is stored in table orders in json but no data stored in table tacos. It's different from what described in the book.
cqlsh:taco_cloud> select id, tacos from orders;
id | tacos
--------------------------------------+-------------------------------------------------------------------------------------------------------------------
2f09eca0-6468-11ee-b2c3-5d2ec40b06dd | [{ingredients: [{name: 'Corn Tortilla', type: 'WRAP'}, {name: 'Cheddar', type: 'CHEESE'}], name: 'lily''s taco'}]
(1 rows)
cqlsh:taco_cloud> select * from tacos;
id | createdat | ingredients | name
----+-----------+-------------+------
(0 rows)
The text was updated successfully, but these errors were encountered:
After submitting an order via UI, I checked data in Cassandra via cqlsh. Taco information is stored in table
orders
in json but no data stored in tabletacos
. It's different from what described in the book.The text was updated successfully, but these errors were encountered: