Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

frozen collections inside collections generate error #26

Open
ekle opened this issue Jun 12, 2015 · 1 comment
Open

frozen collections inside collections generate error #26

ekle opened this issue Jun 12, 2015 · 1 comment

Comments

@ekle
Copy link

ekle commented Jun 12, 2015

steps to reproduce:

CREATE TYPE testtype (
    name text,
);

CREATE TABLE testtable (
    id int,
    connections map<text,frozen<testtype>>,
    PRIMARY KEY (id)
);

cqlc run results in: expected type, found ')' (and 5 more errors)

@0x6e6562
Copy link
Member

cqlc currently has no support for UDTs, mainly because this has only been a recent addition to the underlying gocql library. So implementing this was left until somebody came along and required it for an app. So I guess we should start thinking about supporting this. Not quite sure about the ETA, but submitting a patch might speed this up.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants