chore: change default ports to non-standard ones (9472, 9470, 9471)

This commit is contained in:
2026-05-06 23:23:29 +03:00
parent be370fb76b
commit 9b7ed1fca8
29 changed files with 166 additions and 166 deletions
+2 -2
View File
@@ -6,7 +6,7 @@
//! ```no_run
//! use baradb::Client;
//!
//! let mut client = Client::connect("localhost", 5432).unwrap();
//! let mut client = Client::connect("localhost", 9472).unwrap();
//! let result = client.query("SELECT name FROM users WHERE age > 18").unwrap();
//! for row in result.rows() {
//! println!("{}", row["name"]);
@@ -54,7 +54,7 @@ impl Default for Config {
fn default() -> Self {
Config {
host: "127.0.0.1".to_string(),
port: 5432,
port: 9472,
database: "default".to_string(),
username: "admin".to_string(),
password: String::new(),