risingwave_e2e_extended_mode_test/
opts.rs

1// Copyright 2025 RisingWave Labs
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15use clap::{Parser, ValueHint};
16
17#[derive(Parser, Debug, Clone)]
18pub struct Opts {
19    /// Database name used to connect to pg.
20    #[clap(name = "DB", long = "database", default_value = "dev")]
21    pub pg_db_name: String,
22    /// Username used to connect to postgresql.
23    #[clap(name = "PG_USERNAME", short = 'u', long = "user", default_value="postgres", value_hint=ValueHint::Username)]
24    pub pg_user_name: String,
25    /// Postgresql server address to test against.
26    #[clap(name = "PG_SERVER_ADDRESS", long = "host", default_value = "localhost")]
27    pub pg_server_host: String,
28    /// Postgresql server port to test against.
29    #[clap(name = "PG_SERVER_PORT", short = 'p', long = "port")]
30    pub pg_server_port: u16,
31    #[clap(name = "PG_PASSWARD", long = "password", default_value = "")]
32    pub pg_password: String,
33}