golang-gopkg-pg.v5 5.3.3-3.1 source package in Ubuntu

Changelog

golang-gopkg-pg.v5 (5.3.3-3.1) unstable; urgency=medium

  * Non maintainer upload by the Reproducible Builds team.
  * No source change upload to rebuild on buildd with .buildinfo files.

 -- Holger Levsen <email address hidden>  Fri, 08 Jan 2021 14:59:42 +0100

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
golang
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-gopkg-pg.v5_5.3.3-3.1.dsc 2.1 KiB b55b42f3023254abdaf33eadc2f717eb3d9c2c2abe4986fad56d4c5eeb967de9
golang-gopkg-pg.v5_5.3.3.orig.tar.gz 75.6 KiB f8d6e3b9e116285e5bc43fb8c865323e23dfa1ab6004d14cd4b41602e14cad1f
golang-gopkg-pg.v5_5.3.3-3.1.debian.tar.xz 3.1 KiB f8fdd838b117c9b2bd555be5089b39c288d00fe2955e93b1d799ad596d4ca690

Available diffs

No changes file available.

Binary packages built by this source

golang-gopkg-pg.v5-dev: PostgreSQL client and ORM for Golang

 Go-pg is a convenient PostgreSQL client and ORM for Golang with the
 following features:
 .
  - Basic types: integers, floats, string, bool, time.Time.
                  sql.NullBool, sql.NullString, sql.NullInt64,
                  sql.NullFloat64 and pg.NullTime
  - sql.Scanner and sql/driver.Valuer interfaces
  - Structs, maps and arrays are marshalled as JSON by default
  - PostgreSQL multidimensional Arrays using array tag and Array wrapper
  - Hstore using hstore tag and Hstore wrapper
  - All struct fields are nullable by default and zero values (empty string,
     0, zero time) are marshalled as SQL NULL. ``sql:",notnull"` is used to
     reverse this behaviour
  - Transactions
  - Prepared statements
  - Notifications using LISTEN and NOTIFY
  - Copying data using COPY FROM and COPY TO
  - Timeouts
  - Automatic connection pooling
  - Queries retries on network errors
  - Working with models using ORM and SQL
  - Scanning variables using ORM and SQL
  - SelectOrInsert using on-conflict
  - INSERT ... ON CONFLICT DO UPDATE using ORM
  - Common table expressions using WITH and WrapWith
  - CountEstimate using EXPLAIN to get estimated number of matching rows
  - HasOne, BelongsTo, HasMany and ManyToMany-
  - Creating tables from structs
  - Migrations
  - Sharding