$table->select({ Reciprocal => '1' });
You are supposed to be passing in a hashref not a hash. A hash is a list, which is basically an array and a list is what is used to specify the columns you want to select, not the where clause.
You are supposed to be passing in a hashref not a hash. A hash is a list, which is basically an array and a list is what is used to specify the columns you want to select, not the where clause.