Close this connection with the database

Property definitions

postgresql $ Postgres :: finish
  # Close this connection with the database
  fun finish
  do
    if is_closed then return

    is_closed = true

    native_connection.finish
  end
lib/postgresql/postgres.nit:73,3--81,5