get_page meta query not working, maybe a bug?

get_pages() doesn’t support the full featured meta query that you can do with WP_Query() constructor. get_pages() only support meta key – value query and that is why 1st query is working and 2nd is not.

So, you have to use WP_Query() in this case.