Prep release 09.06.0200 REL-09_06_0200
authorHiroshi Saito <hiroshi@winpg.jp>
Fri, 10 Mar 2017 15:14:15 +0000 (00:14 +0900)
committerHiroshi Saito <hiroshi@winpg.jp>
Fri, 10 Mar 2017 15:14:15 +0000 (00:14 +0900)
configure.ac
docs/release.html
version.h

index 7dd795e4e4f7c8e964e9ca3020eb51cc26f8a5a4..95dc800950d7b5f2ac854ad08710eb28928c1236 100644 (file)
@@ -1,5 +1,5 @@
 # Process this file with autoconf to produce a configure script.
-AC_INIT(psqlodbc, 09.06.0100, [pgsql-odbc@postgresql.org])
+AC_INIT(psqlodbc, 09.06.0200, [pgsql-odbc@postgresql.org])
 AC_PREREQ(2.57)
 AC_CONFIG_AUX_DIR(config)
 AM_INIT_AUTOMAKE
index ecbc67083fd531786573fb164abca8b807bf2d51..4a22c63c1f3448fd5040ca2c9c366562da26fec2 100644 (file)
@@ -9,6 +9,26 @@
 
 <h1>psqlODBC release notes</h1>
 <hr>
+<h2><a id="09.06.0200">psqlODBC 09.06.0200 Release</a></h2>
+Changes:<br />
+<ol type="1">
+<li><b>Start transactons first before calling SQLEndTran().</b><br /></li>
+<li><b>The failure of libpq_bind_exec() which returns NULL doesn't mean a FATAL error.
+ Also make a check for disconnected connections.</b><br /></li>
+<li><b>Handle output parameters properly in build_libpq_bind_params.Also handle return values properly.</b><br /></li>
+<li><b>Make check of connection lost.</b><br /></li>
+<li><b>Revise recent lost connection check.</b><br /></li>
+Check the lost connection<br />
+<ol type="a">
+<li>at the beginning of ODBC APIs.<br /></li>
+<li>at the beginning of FE-BE communications using extended protocol.<br /></li>
+</ol>
+<li><b>Stop specifying parameter datatype oids in parse message. Unfortunately it is inflexible
+ and rather harmful. Though I don't know if it has much meaning, use cast instead just in order
+ to keep regression test results. It's not necessary to cast any more the 2nd parameter of
+ {call a_b_c_d_e(?, ?, ?, ?, ?)} in odbc-escapes-test.
+</b><br /></li>
+</ol><br />
 <h2><a id="09.06.0100">psqlODBC 09.06.0100 Release</a></h2>
 Changes:<br />
 <ol type="1">
index 26bf58de21fe08076d1a75ef1ce29cedefb86680..8f172d5ccd1cdf6da867327b74dccab03e94a05a 100644 (file)
--- a/version.h
+++ b/version.h
  * and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj.
  */
 #ifndef POSTGRESDRIVERVERSION
-#define POSTGRESDRIVERVERSION      "09.06.0100"
+#define POSTGRESDRIVERVERSION      "09.06.0200"
 #endif
 #ifndef POSTGRES_RESOURCE_VERSION
 #define POSTGRES_RESOURCE_VERSION  POSTGRESDRIVERVERSION
 #endif
 #ifndef PG_DRVFILE_VERSION
-#define PG_DRVFILE_VERSION     9,6,01,00
+#define PG_DRVFILE_VERSION     9,6,02,00
 #endif
 
 #endif