Tests wether a field is a null value

Property definitions

postgresql $ NativePGResult :: is_null
  # Tests wether a field is a null value
  fun is_null(row_number:Int, column_number: Int): Bool `{
    return PQgetisnull(self, row_number, column_number);
  `}
lib/postgresql/native_postgres.nit:80,3--83,4