Changeset 33479 for branches/4.1/src/wp-includes/wp-db.php
- Timestamp:
- 07/29/2015 06:45:12 AM (11 years ago)
- File:
-
- 1 edited
-
branches/4.1/src/wp-includes/wp-db.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/4.1/src/wp-includes/wp-db.php
r33478 r33479 2571 2571 if ( is_array( $value['length'] ) ) { 2572 2572 $length = $value['length']['length']; 2573 $truncate_by_byte_length = 'byte' === $value['length']['type']; 2573 2574 } else { 2574 2575 $length = false; 2576 // Since we have no length, we'll never truncate. 2577 // Initialize the variable to false. true would take us 2578 // through an unnecessary (for this case) codepath below. 2579 $truncate_by_byte_length = false; 2575 2580 } 2576 2581 … … 2584 2589 continue; 2585 2590 } 2586 2587 $truncate_by_byte_length = 'byte' === $value['length']['type'];2588 2591 2589 2592 $needs_validation = true; … … 2660 2663 } 2661 2664 2662 $queries[ $col ] = $this->prepare( "CONVERT( LEFT( CONVERT( %s USING $charset ), %.0f ) USING {$this->charset} )", $value['value'], $value['length']['length'] ); 2665 if ( is_array( $value['length'] ) ) { 2666 $queries[ $col ] = $this->prepare( "CONVERT( LEFT( CONVERT( %s USING $charset ), %.0f ) USING {$this->charset} )", $value['value'], $value['length']['length'] ); 2667 } else if ( 'binary' !== $charset ) { 2668 // If we don't have a length, there's no need to convert binary - it will always return the same result. 2669 $queries[ $col ] = $this->prepare( "CONVERT( CONVERT( %s USING $charset ) USING {$this->charset} )", $value['value'] ); 2670 } 2663 2671 2664 2672 unset( $data[ $col ]['db'] );
Note: See TracChangeset
for help on using the changeset viewer.