You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/doc/installation/from-package.en-us.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,14 @@ Arch Linux ARM provides packages for [aarch64](https://archlinuxarm.org/packages
43
43
pacman -S gitea
44
44
```
45
45
46
+
## Gentoo Linux
47
+
48
+
The rolling release distribution has [Gitea](https://packages.gentoo.org/packages/www-apps/gitea) in their official community repository and package updates are provided with new Gitea releases.
49
+
50
+
```sh
51
+
emerge gitea -va
52
+
```
53
+
46
54
## Canonical Snap
47
55
48
56
There is a [Gitea Snap](https://snapcraft.io/gitea) package which follows the latest stable version.
_, err=e.Context(ctx).SQL("SELECT table_rows FROM information_schema.tables WHERE tables.table_name = ? AND tables.table_schema = ?;", tablename, x.Dialect().URI().DBName).Get(&rows)
190
190
caseschemas.POSTGRES:
191
-
_, err=e.Context(ctx).SQL("SELECT reltuples AS estimate FROM pg_class WHERE relname = ?;", tablename).Get(&rows)
191
+
// the table can live in multiple schemas of a postgres database
192
+
// See https://wiki.postgresql.org/wiki/Count_estimate
193
+
tablename=x.TableName(bean, true)
194
+
_, err=e.Context(ctx).SQL("SELECT reltuples::bigint AS estimate FROM pg_class WHERE oid = ?::regclass;", tablename).Get(&rows)
0 commit comments