摘要: # 背景在有物化视图的情况下删除多余的行uuid# 原因This is in the 3.11.1 release notes: "Cassandra will no longer allow dropping columns on tables with Materialized Views."# 阅读全文
posted @ 2023-02-27 22:09 青玄0316 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 背景 执行如下sql会失败并报如题目中的错误 insert into event (subject, time, type) values (now(), 'type'); 原因 now() returns a timeuuid, not a timestamp 解决办法 尝试用 dateOf(no 阅读全文
posted @ 2023-02-27 22:01 青玄0316 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 1、depedency <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-cassandra</artifactId> </dependency> 2、properties spring. 阅读全文
posted @ 2023-02-27 21:50 青玄0316 阅读(261) 评论(0) 推荐(0) 编辑