I'm running this query:
{"my_friends":"SELECT uid2 FROM friend WHERE uid1=me()",
"check_ins":"SELECT coords, tagged_uids, author_uid, page_id, message, timestamp
FROM checkin WHERE author_uid=me() OR author_uid
IN (SELECT uid2 FROM %23my_friends)",
"tagged_check_in_users":"SELECT uid from user
where ((uid in (select tagged_uids from %23check_ins))
OR (uid in (select author_uid from %23check_ins)))
AND uid <> me()"}
and I get "internal server error" when the current user has many friends (more than 200, more or less). When I change the "my_friends" table query and add a limit of 100 friends, the query works fine.
Does anyone have an idea what the problem is?