Skip to content

Commit

Permalink
fix frozen collection type parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
Bulat Shakirzyanov committed Feb 20, 2015
1 parent 6468365 commit bdff15c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/cassandra/cluster/schema/type_parser.rb
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,10 @@ def create_type(node)
end

def lookup_type(node)
if node.name == "org.apache.cassandra.db.marshal.FrozenType"
return lookup_type(node.children.first)
end

type = @@types[node.name]

case type
Expand Down

0 comments on commit bdff15c

Please sign in to comment.