Make WordPress Core

Ticket #21621: meta-type.diff

File meta-type.diff, 2.1 KB (added by wonderboymusic, 12 years ago)
  • wp-includes/query.php

     
    23622362                                                break;
    23632363                                        case $q['meta_key']:
    23642364                                        case 'meta_value':
    2365                                                 $orderby = "$wpdb->postmeta.meta_value";
     2365                                                if ( isset( $q['meta_type'] ) ) {
     2366                                                        $meta_type = get_meta_type( $q['meta_type'] );
     2367                                                        $orderby = "CAST($wpdb->postmeta.meta_value AS {$meta_type})";
     2368                                                } else {
     2369                                                        $orderby = "$wpdb->postmeta.meta_value";
     2370                                                }       
    23662371                                                break;
    23672372                                        case 'meta_value_num':
    23682373                                                $orderby = "$wpdb->postmeta.meta_value+0";
  • wp-includes/meta.php

     
    604604}
    605605
    606606/**
     607 * Given a meta type, return the appropriate alias if applicable
     608 *
     609 * @since 3.5.0
     610 *
     611 * @see WP_Meta_Query
     612 *
     613 * @param string $type MySQL type to cast meta_value
     614 * @return string MySQL type
     615 */
     616function get_meta_type( $type = '' ) {
     617        if ( empty( $type ) )
     618                return 'CHAR';
     619       
     620        $meta_type = strtoupper( $type );
     621
     622        if ( ! in_array( $meta_type, array( 'BINARY', 'CHAR', 'DATE', 'DATETIME', 'DECIMAL', 'SIGNED', 'TIME', 'UNSIGNED', 'NUMERIC' ) ) )     
     623                return 'CHAR';
     624                       
     625        if ( 'NUMERIC' == $meta_type )
     626                $meta_type = 'SIGNED';
     627
     628        return $meta_type;
     629}
     630/**
    607631 * Container class for a multiple metadata query
    608632 *
    609633 * @since 3.2.0
     
    713737
    714738                foreach ( $this->queries as $k => $q ) {
    715739                        $meta_key = isset( $q['key'] ) ? trim( $q['key'] ) : '';
    716                         $meta_type = isset( $q['type'] ) ? strtoupper( $q['type'] ) : 'CHAR';
     740                        $meta_type = get_meta_type( isset( $q['type'] ) ? $q['type'] : '' );
    717741
    718                         if ( 'NUMERIC' == $meta_type )
    719                                 $meta_type = 'SIGNED';
    720                         elseif ( ! in_array( $meta_type, array( 'BINARY', 'CHAR', 'DATE', 'DATETIME', 'DECIMAL', 'SIGNED', 'TIME', 'UNSIGNED' ) ) )
    721                                 $meta_type = 'CHAR';
    722 
    723742                        $meta_value = isset( $q['value'] ) ? $q['value'] : null;
    724743
    725744                        if ( isset( $q['compare'] ) )