Changeset 26053 for trunk/tests/phpunit/tests/meta/query.php
- Timestamp:
- 11/08/2013 10:51:03 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/meta/query.php
r25002 r26053 106 106 107 107 } 108 109 /** 110 * @ticket 22967 111 */ 112 function test_null_value_sql() { 113 global $wpdb; 114 115 $query = new WP_Meta_Query( array( 116 array( 'key' => 'abc', 'value' => null, 'compare' => '=' ) 117 ) ); 118 $sql = $query->get_sql( 'post', $wpdb->posts, 'ID', $this ); 119 120 $this->assertEquals( 1, substr_count( $sql['where'], "CAST($wpdb->postmeta.meta_value AS CHAR) = '')" ) ); 121 } 108 122 }
Note: See TracChangeset
for help on using the changeset viewer.