Code Duplication    Length = 9-9 lines in 2 locations

sync/class.jetpack-sync-wp-replicastore.php 2 locations

@@ 613-621 (lines=9) @@
610
					$columns  = Jetpack_Sync_Defaults::$default_post_checksum_columns;
611
				}
612
				break;
613
			case "post_meta":
614
				$object_count = $this->post_count( null, $start_id, $end_id );
615
				$object_table = $wpdb->postmeta;
616
				$id_field     = 'meta_id';
617
				$where_sql    = Jetpack_Sync_Settings::get_whitelisted_post_meta_sql();
618
				if ( empty( $columns ) ) {
619
					$columns  = Jetpack_Sync_Defaults::$default_post_meta_checksum_columns;
620
				}
621
				break;
622
			case "comments":
623
				$object_count = $this->comment_count( null, $start_id, $end_id );
624
				$object_table = $wpdb->comments;
@@ 631-639 (lines=9) @@
628
					$columns  = Jetpack_Sync_Defaults::$default_comment_checksum_columns;
629
				}
630
				break;
631
			case "comment_meta":
632
				$object_count = $this->post_count( null, $start_id, $end_id );
633
				$object_table = $wpdb->commentmeta;
634
				$id_field     = 'meta_id';
635
				$where_sql    = Jetpack_Sync_Settings::get_whitelisted_comment_meta_sql();
636
				if ( empty( $columns ) ) {
637
					$columns  = Jetpack_Sync_Defaults::$default_post_meta_checksum_columns;
638
				}
639
				break;
640
			default:
641
				return false;
642
		}