Executes a query and returns the raw PGResult

Property definitions

postgresql $ Postgres :: raw_execute
  # Executes a `query` and returns the raw `PGResult`
  fun raw_execute(query: Text): PGResult do return new PGResult(native_connection.exec(query))
lib/postgresql/postgres.nit:103,3--104,94