卡桑德拉 "invalid column name type"
cassandra "invalid column name type"
我在将数据复制到 table 时 运行 在 Cassandra 中遇到 "Invalid column name type" 错误。此数据是从不同 Cassandra 数据库中的相同 table 中提取的。
cqlsh:test> COPY things (id,field1,field2,field3) from '~/code/things.csv';
这是我得到的回复:
Using 7 child processes
Invalid column name type
这个错误是什么意思?它似乎在互联网上的任何地方都没有。
您的 csv 是否有 header 和 type
(保留字)列?如果是这样,请尝试将其编辑为 things_type
我在将数据复制到 table 时 运行 在 Cassandra 中遇到 "Invalid column name type" 错误。此数据是从不同 Cassandra 数据库中的相同 table 中提取的。
cqlsh:test> COPY things (id,field1,field2,field3) from '~/code/things.csv';
这是我得到的回复:
Using 7 child processes
Invalid column name type
这个错误是什么意思?它似乎在互联网上的任何地方都没有。
您的 csv 是否有 header 和 type
(保留字)列?如果是这样,请尝试将其编辑为 things_type