From b2536b9a614dd35292c81325f7fb02b8c047778d Mon Sep 17 00:00:00 2001 From: Kailash Nadh Date: Tue, 27 Apr 2021 20:12:57 +0530 Subject: [PATCH] Fix incorrect PG doc URL in comment --- backends/sqldb.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backends/sqldb.go b/backends/sqldb.go index fc08746..d881b91 100644 --- a/backends/sqldb.go +++ b/backends/sqldb.go @@ -286,7 +286,7 @@ func (s *sqlDB) createTableSchema(cols []string, colTypes []*sql.ColumnType) ins // If the DB is Postgres, optionally create an "unlogged" table that disables // WAL, improving performance of throw-away cache tables. - // https://www.postgresql.org/docs/9.1/sql-createtable.html + // https://www.postgresql.org/docs/current/sql-createtable.html if s.opt.DBType == dbTypePostgres && s.opt.UnloggedTables { unlogged = "UNLOGGED" }