make `Switch` constructor more precise
[hiphop-php.git] / hphp / test / slow / concat / 1572.php
blob40c1286140adb1991fc0f088d166dde077c0a9b7
1 <?hh
3 function foo($where_clause){
4 $sql = 'SELECT p.property_name, p.property_value, p.property_id, '. 'p.property_data_type, p.property_type, '. 't.tier_id, t.tier_parent_id, t.tier_version, t.tier_type, '. 't.tier_state, t.tier_name '. 'FROM tier t LEFT OUTER JOIN property p ON '. 'p.parent_id = t.tier_id AND '. 'p.property_type = "tier" '. $where_clause;
5 echo $sql . "\n";
8 <<__EntryPoint>>
9 function main_1572() {
10 foo("where 1 = 1");