Skip to content

Commit

Permalink
Fix incorrect PG doc URL in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
knadh committed Apr 27, 2021
1 parent e93e6d2 commit b2536b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backends/sqldb.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down

0 comments on commit b2536b9

Please sign in to comment.