1use std::io::Error as IoError;
16
17use thiserror::Error;
18
19use crate::pg_server::BoxedError;
20pub type PsqlResult<T> = std::result::Result<T, PsqlError>;
21
22#[derive(Error, Debug)]
24pub enum PsqlError {
25 #[error("Failed to start a new session: {0}")]
26 StartupError(#[source] BoxedError),
27
28 #[error("Invalid password")]
29 PasswordError,
30
31 #[error("Failed to run the query: {0}")]
32 SimpleQueryError(#[source] BoxedError),
33
34 #[error("Failed to prepare the statement: {0}")]
35 ExtendedPrepareError(#[source] BoxedError),
36
37 #[error("Failed to execute the statement: {0}")]
38 ExtendedExecuteError(#[source] BoxedError),
39
40 #[error(transparent)]
41 IoError(#[from] IoError),
42
43 #[error(transparent)]
45 Uncategorized(BoxedError),
46
47 #[error("Panicked when handling the request: {0}
48This is a bug. We would appreciate a bug report at:
49 https://github.com/risingwavelabs/risingwave/issues/new?labels=type%2Fbug&template=bug_report.yml")]
50 Panic(String),
51
52 #[error("Unable to setup an SSL connection")]
53 SslError(#[from] openssl::ssl::Error),
54
55 #[error("terminating connection due to idle-in-transaction timeout")]
56 IdleInTxnTimeout,
57
58 #[error(transparent)]
59 ServerThrottle(BoxedError),
60}
61
62impl PsqlError {
63 pub fn no_statement() -> Self {
64 PsqlError::Uncategorized("No statement found".into())
65 }
66
67 pub fn no_portal() -> Self {
68 PsqlError::Uncategorized("No portal found".into())
69 }
70}