Skip to content

Commit

Permalink
Prepare for v0.31 release
Browse files Browse the repository at this point in the history
  • Loading branch information
emarsden committed Mar 28, 2024
1 parent 8674f8b commit 895d44a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [0.31] - Unreleased
## [0.31] - 2024-03-28

- Add serialization support for the `hstore` datatype from Emacs Lisp hashtables.

Expand Down
2 changes: 1 addition & 1 deletion pg.el
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
;; Copyright: (C) 1999-2002, 2022-2024 Eric Marsden

;; Author: Eric Marsden <[email protected]>
;; Version: 0.30
;; Version: 0.31
;; Keywords: data comm database postgresql
;; URL: https://github.com/emarsden/pg-el
;; Package-Requires: ((emacs "28.1"))
Expand Down
6 changes: 3 additions & 3 deletions test/test-pg.el
Original file line number Diff line number Diff line change
Expand Up @@ -540,9 +540,9 @@ bar$$"))))
:key (lambda (tbl) (if (pg-qualified-name-p tbl)
(pg-qualified-name-name tbl)
tbl)))))
(let* ((sql (format "CREATE TABLE IF NOT EXISTS %s.%s(id INT4)"
(pg-escape-identifier "fan.cy")
(pg-escape-identifier "tri\"cks")))
(let* ((qn (make-pg-qualified-name :schema "fan.cy" :name "tri\"cks"))
(sql (format "CREATE TABLE IF NOT EXISTS %s(id INT4)"
(pg-print-qualified-name qn)))
(res (pg-exec con sql)))
(should (zerop (cl-search "CREATE" (pg-result res :status)))))
(let ((tables (pg-tables con)))
Expand Down

0 comments on commit 895d44a

Please sign in to comment.