Skip to content

Commit

Permalink
Merge pull request #280 from sabracrolleton/master
Browse files Browse the repository at this point in the history
Resolving issues 277, 278 and 279
  • Loading branch information
sabracrolleton authored Jul 18, 2021
2 parents 9f3e275 + b34ecaf commit c41c96b
Show file tree
Hide file tree
Showing 18 changed files with 2,682 additions and 1,028 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Changelog v. 1.33.2

Fix bug in export functions when user tries to export nil into a database

Fix bug in import functions when functions are called but the current package has changed.
Note to self. Pay attention to needs for fully qualified symbols (including package names) and how to test them for equality.

# Changelog v. 1.33.1
Dao Export and Import Functions (Postmodern v. 1.33.1 and newer)

Expand Down
2 changes: 1 addition & 1 deletion cl-postgres.asd
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
(test-op "cl-postgres/simple-date-tests"))))

(defsystem "cl-postgres/tests"
:depends-on ("cl-postgres" "fiveam")
:depends-on ("cl-postgres" "fiveam" "uiop")
:components
((:module "cl-postgres/tests"
:components ((:file "test-package")
Expand Down
1 change: 1 addition & 0 deletions cl-postgres/errors.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ giving them a database-connection-error superclass."))
(deferror "42P01" undefined-table syntax-error-or-access-violation)
(deferror "42601" columns-error syntax-error-or-access-violation)
(deferror "42703" undefined-column syntax-error-or-access-violation)
(deferror "42704" unrecognized-configuration-parameter data-exception)
(deferror "42701" duplicate-column syntax-error-or-access-violation)
(deferror "42P03" duplicate-cursor syntax-error-or-access-violation)
(deferror "42P04" duplicate-database syntax-error-or-access-violation)
Expand Down
1,137 changes: 569 additions & 568 deletions doc/array-notes.html

Large diffs are not rendered by default.

Loading

0 comments on commit c41c96b

Please sign in to comment.