Get a list of posts with associated meta_value

You can just fetch the post meta manually within the loop as follows:

get_post_meta( get_the_ID(), 'oldtimer', true );

That should get you the correct value. Hope it helps 👍