Skip to content

Commit

Permalink
updated pgq logo and fixed readme typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kedlas committed Oct 9, 2023
1 parent f4b1a1f commit 7a05974
Show file tree
Hide file tree
Showing 8 changed files with 400 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/pgq.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
[![GoDoc](https://pkg.go.dev/badge/go.dataddo.com/pgq)](https://pkg.go.dev/go.dataddo.com/pgq)
[![GoReportCard](https://goreportcard.com/badge/go.dataddo.com/pgq)](https://goreportcard.com/report/go.dataddo.com/pgq)

<img src="logo.png" alt="pgsq logo" width="200" align="right" style="margin: 20px"/>

PGQ is a Go package that provides a queue mechanism for your Go applications built on top of the postgres database.
It enables developers to implement efficient and reliable message queues for their microservices architecture using the familiar postgres infrastructure.

Expand Down
4 changes: 2 additions & 2 deletions internal/pg/pg.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ func (p *StmtParams) Next() string {
// err := db.Exec(fmt.Sprintf("INSERT INTO %s VALUES ($1)", quoted), data)
//
// Any double quotes in name will be escaped. The quoted identifier will be
// case sensitive when used in a query. If the input string contains a zero
// byte, the result will be truncated immediately before it.
// case-sensitive when used in a query. If the input string contains a zero byte,
// the result will be truncated immediately before it.
//
// It's a copy of the function from github.com/lib/pq.
func QuoteIdentifier(name string) string {
Expand Down
Binary file modified logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
365 changes: 365 additions & 0 deletions logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 7a05974

Please sign in to comment.