id bigint from deserializer
created_at string from deserializer
source string from deserializer
favorited boolean from deserializer
retweeted_status struct<text:string,user:struct<screen_name:string,name:string>,retweet_count:int> from deserializer
entities struct<urls:array<struct<expanded_url:string>>,user_mentions:array<struct<screen_name:string,name:string>>,hashtags:array<struct<text:string>>> from deserializer
text string from deserializer
user struct<screen_name:string,name:string,friends_count:int,followers_count:int,statuses_count:int,verified:boolean,utc_offset:int,time_zone:string,location:string> from deserializer
in_reply_to_screen_name string from deserializer
.
select id from election order by election.retweeted_status.retweet_count desc limit 10
This query is not working the error is "SemanticException [Error 10002]: Line 1:53 Invalid column reference 'retweeted_status'"
select * from election order by election.retweeted_status.retweet_count desc limit 10
But this query is working