Antony Carl Sastre

Results 8 comments of Antony Carl Sastre

Having the same issue … might this be a ZSH thing? What are you guys using?

Added a pull request #45 with docs update, not sure if I followed proper contributor policies.

The table for photos: ``` create_table "photos", force: :cascade do |t| t.datetime "created_at", null: false t.datetime "updated_at", null: false t.text "tags", default: [], array: true t.string "title" t.bigint "shoot_id" t.integer...

Having a hard time fixing this, anyone else experiencing this problem? Is ActiveRecord generating a broken SQL-query? @skatkov @vfonic

Thanks @vfonic i actually misspelled the method call. I was calling `Photo.tags_cloud` not `Photo.tag_cloud`. I updated the issue. 🙂 *Update:* Getting the same error on `Photo.all_tags`.

@vfonic Good catch! I updated to 0.6.0 and the new alias `taggable_array` but no luck :/ The problem seems to be in the SQL query, i'll keep digging.

@vfonic What DB are you using? MySQL, PostreSQL or other?

@skatkov Great to know thanks, i'm working on recreating it in the tests. I can confirm that it has to do with the construction of the SQL query. ``` SELECT...