Consider the following columns and respectives datatypes on table auge_objective.measures: id VARCHAR, name VARCHAR, _**start_value NUMERIC, end_value NUMERIC, current_value NUMERIC**_ When the query is executed the following way, the NUMERIC columns don't return nothing. `"SELECT id, name, start_value, end_value, current_value FROM auge_objective.measures ";` But if it's used cast to REAL, the query returns with right values. It´s works! `"SELECT id, name, start_value::REAL, end_value::REAL, current_value::REAL FROM auge_objective.measures ";`