| 569 | } |
| 570 | |
| 571 | bool ExistsPosePrior(const pose_prior_t pose_prior_id, |
| 572 | bool is_deprecated_image_prior) const override { |
| 573 | MaybeThrowDeprecatedPosePriorError(is_deprecated_image_prior); |
| 574 | return ExistsRowId(sql_stmt_exists_pose_prior_, pose_prior_id); |
| 575 | } |
| 576 | |
| 577 | bool ExistsKeypoints(const image_t image_id) const override { |
| 578 | return ExistsRowId(sql_stmt_exists_keypoints_, image_id); |
nothing calls this directly
no test coverage detected