Code Duplication    Length = 7-7 lines in 2 locations

wp-includes/wp-db.php 2 locations

@@ 2550-2556 (lines=7) @@
2547
			return false;
2548
		}
2549
2550
		if ( empty( $this->table_charset[ $tablekey ] ) ) {
2551
			// This primes column information for us.
2552
			$table_charset = $this->get_table_charset( $table );
2553
			if ( is_wp_error( $table_charset ) ) {
2554
				return $table_charset;
2555
			}
2556
		}
2557
2558
		// If still no column information, return the table charset.
2559
		if ( empty( $this->col_meta[ $tablekey ] ) ) {
@@ 2599-2605 (lines=7) @@
2596
			return false;
2597
		}
2598
2599
		if ( empty( $this->col_meta[ $tablekey ] ) ) {
2600
			// This primes column information for us.
2601
			$table_charset = $this->get_table_charset( $table );
2602
			if ( is_wp_error( $table_charset ) ) {
2603
				return $table_charset;
2604
			}
2605
		}
2606
2607
		if ( empty( $this->col_meta[ $tablekey ][ $columnkey ] ) ) {
2608
			return false;