mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-06 18:37:11 +01:00
10 lines
195 B
Go
10 lines
195 B
Go
|
//go:build !kvdb_postgres
|
||
|
|
||
|
package sqlbase
|
||
|
|
||
|
// parsePostgresError attempts to parse a postgres error as a database agnostic
|
||
|
// SQL error.
|
||
|
func parsePostgresError(err error) error {
|
||
|
return nil
|
||
|
}
|