Hi,

Just a little patch, so you can specify :port of your running Postgresql server...


MfG,
Tayssir
New patches:

[Postmodern backend: connection spec now accepts :port keyword argument, to specify the port. Similar to Postmodern's connection spec syntax.
[EMAIL PROTECTED] {
hunk ./src/db-postmodern/pm-controller.lisp 90
-          (destructuring-bind (db-type host database user password) (second (controller-spec sc))
+          (destructuring-bind (db-type host database user password &key port) (second (controller-spec sc))
hunk ./src/db-postmodern/pm-controller.lisp 92
-            (let ((con (postmodern:connect database user password host :pooled-p nil)))
+            (let ((con (apply #'postmodern:connect database user password host :pooled-p nil
+                              (if port
+                                  (list :port port)
+                                  nil))))
}

Context:

[Fix character comparison in BDB data store and lisp-compare functions
[EMAIL PROTECTED] 
[Fixed mop test dependencies for fiveam conversion
[EMAIL PROTECTED] 
[Fix lisp comparisons for map-index to mirror 0.9p1
[EMAIL PROTECTED]
 
 Forgot to push patch to lisp-compare<=/=/< functions from
 0.9 CVS to 091 darcs.  Fixed in merge branch. 
 
] 
[Fix FiveAM test dependencies, some Allegro issues, some mis-merges, etc.  See diff for details.
[EMAIL PROTECTED] 
[resolve merge conflicts between eslick working branch and postmodern branch
[EMAIL PROTECTED] 
[Most recent edits; small bug fixes and query testing
[EMAIL PROTECTED] 
[Add test for unicode values in slots from 0.9p1
[EMAIL PROTECTED] 
[Enable UTF32le unicode support for OpenMCL 1.1
[EMAIL PROTECTED] 
[Pset wasn't persistent
[EMAIL PROTECTED] 
[Last CVS branch bug fix: utf16 serializer
[EMAIL PROTECTED] 
[Keep to date with CVS for release tag 0.9
[EMAIL PROTECTED] 
[First pass complete cl-prevalence backend; still a few bugs to work out
[EMAIL PROTECTED] 
[Cleanup and export instance caching so data stores can override the protocol
[EMAIL PROTECTED] 
[Update elephant code version to 0.9.1
[EMAIL PROTECTED] 
[Cleanup persistent object printing to handle unbound oids
[EMAIL PROTECTED] 
[Simple augmentation of debugging model in deserializer
[EMAIL PROTECTED] 
[Fix map-legacy-names bug for null case
[EMAIL PROTECTED] 
[Prevalence fixes for duplicate and get cursor operations
[EMAIL PROTECTED] 
[Test duplicate operations without depending on primary key ordering part 1
[EMAIL PROTECTED] 
[A tiny convenience.
[EMAIL PROTECTED] 
[Cleaning up some type declarations
[EMAIL PROTECTED] 
[Somehow this was fixed before, and then regressed again in the 
[EMAIL PROTECTED]
 current code.  I have added a test which actually exercises,
 according the the XP discipline.  It is a very inelegant test,
 but it is a hard to exercise problem.
] 
[pm-btree make-plpgsql-insert/update duplicates handling fixed
[EMAIL PROTECTED] 
[fix type declaration in get-instances-by-range
[EMAIL PROTECTED] 
[intern to proper package in make-derived-name
[EMAIL PROTECTED] 
[db-postmodern safe-ignore-postgres-error on create-language
Henrik Hjelte<[EMAIL PROTECTED]>**20070823153914] 
[do-test-spec jumps into debugger by default
Henrik Hjelte<[EMAIL PROTECTED]>**20070823145758] 
[db-postmodern do not use postmoderns connection pooling
Henrik Hjelte<[EMAIL PROTECTED]>**20070823094751] 
[db-postmodern remove meaningless function
Henrik Hjelte<[EMAIL PROTECTED]>**20070823094715] 
[db-postmodern rename with-conn with-postmodern-conn
Henrik Hjelte<[EMAIL PROTECTED]>**20070823091456] 
[db-postmodern create-language on initialization (Robert L. Read)
Henrik Hjelte<[EMAIL PROTECTED]>**20070823090504] 
[db-postmodern ignore-errors changed to handler-case
Henrik Hjelte<[EMAIL PROTECTED]>**20070823085526] 
[db-postmodern update in initialization code
Henrik Hjelte<[EMAIL PROTECTED]>**20070823085018] 
[db-postmodern bugfix with transaction handling
Henrik Hjelte<[EMAIL PROTECTED]>**20070823084932] 
[db-postmodern attempt to solve uncommon error 42P01 with prepared statements
Henrik Hjelte<[EMAIL PROTECTED]>**20070823084724] 
[changed test for serializer
Henrik Hjelte<[EMAIL PROTECTED]>**20070822020617] 
[db-postmodern: execute-transaction does not use magic macro
Henrik Hjelte<[EMAIL PROTECTED]>**20070820201508] 
[TAG PostmodernImprovements
[EMAIL PROTECTED] 
Patch bundle hash:
99873fe37fe1007ad3365c0a9d7f2264c7d512d7
_______________________________________________
elephant-devel site list
elephant-devel@common-lisp.net
http://common-lisp.net/mailman/listinfo/elephant-devel

Reply via email to