gocql SELECT * doesn't return all columns
问题 I came across this weird behaviour while trying to implement some counters for my application. Basically, I did a counter table like so : CREATE TABLE stats_dev.log_counters ( date text PRIMARY KEY, all counter ); Then I have some specific types of message I want to count as well, so in my Go app, I ALTER the table to add the column I didn't have before. My app is growing, and I start to have more than 30 columns (shouldn't be more than 50) and when I want to retrieve all those counters, some