# rust-postgres **Repository Path**: li_shi_tian_admin_admin/rust-postgres ## Basic Information - **Project Name**: rust-postgres - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-06-19 - **Last Updated**: 2025-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Materialize fork of Rust-Postgres This repo serves as a staging area for Materialize patches to the [rust-postgres] client before they are accepted upstream. There are no releases from this fork. The [MaterializeInc/materialize] repository simply pins a recent commit from the `master` branch. Other projects are welcome to do the same. The `master` branch is never force pushed. Upstream changes are periodically into `master` via `git merge`. ## Adding a new patch Develop your patch against the master branch of the upstream [rust-postgres] project. Open a PR with your changes. If your PR is not merged quickly, open the same PR against this repository and request a review from a Materialize engineer. The long-term goal is to get every patch merged upstream. ## Integrating upstream changes ```shell git clone https://github.com/MaterializeInc/rust-postgres.git git remote add upstream https://github.com/sfackler/rust-postgres.git git checkout master git pull git checkout -b integrate-upstream git fetch upstream git merge upstream/master # Resolve any conflicts, then open a PR against this repository with the merge commit. ``` [rust-postgres]: https://github.com/sfackler/rust-postgres [MaterializeInc/materialize]: https://github.com/MaterializeInc/materialize