はfieldsも下記のように指定すること。
※でないと取得した結果が意図したとおりに取れない。
$this->Post->find('all', [
'joins' => [
'Comment' => [
'table' => 'comments',
'alias' => 'Comment',
'type' => 'left',
'conditions' => [
'Post.id = Comment.post_id'
]
]
],
'fields' => '*'
])
てな感じ。