Prep release 11.00.0000. REL-11_00_0000
authorHiroshi Saito <hiroshi@winpg.jp>
Sat, 17 Nov 2018 13:18:33 +0000 (22:18 +0900)
committerHiroshi Saito <hiroshi@winpg.jp>
Sat, 17 Nov 2018 13:18:33 +0000 (22:18 +0900)
configure.ac
docs/release.html
version.h

index f60a6e6c92574080d0b3ba5c4180a8efbcda7adc..12f38449da665c05b6eb626004c6564b29797a00 100644 (file)
@@ -1,5 +1,5 @@
 # Process this file with autoconf to produce a configure script.
-AC_INIT(psqlodbc, 10.03.0000, [pgsql-odbc@postgresql.org])
+AC_INIT(psqlodbc, 11.00.0000, [pgsql-odbc@postgresql.org])
 AC_PREREQ(2.57)
 AC_CONFIG_AUX_DIR(config)
 AM_INIT_AUTOMAKE
index 06eb11022c4bc9ebd28c081a0559c65efe6dc517..e954a34c67f70b58e5f6c81b6ce9d20c3eab4a51 100644 (file)
@@ -9,6 +9,21 @@
 
 <h1>psqlODBC release notes</h1>
 <hr>
+<h2><a id="11.00.0000">psqlODBC 11.00.0000 Release</a></h2>
+Changes:<br />
+<ol type="1">
+<li>Remove obsolete maps pointed out.</li>
+POWER -> pow, CONCAT -> textcat, LEFT -> ltrunc, RIGHT -> rtrunc<br />
+Patch by Daniel Cory.
+<li>Remove connSettings option and/or pqopt option from the OutConnectionString parameter of SQLDriverConnect() when each option doesn't exist in InConnectionString parameter.</li>
+<li>The parameters should be cast because parameters of concat() function are variadic "any".</li>
+<li>Unbuffered-IO in Windows is incredibly slow. Instead call fflush() after fprintf().</li>
+<li>Add an alias DX of *Database* keyword for connection strings to aviod the use of "database" keyword which has a special meaning in some apps or middlewares.</li>
+<li>numeric items without precision are unlimited and there's no natural map between SQL Data types.</li>
+Add an option *Numeric(without precision) as*.
+<li>Fix a bug that SQLSpecialColumns() returns oid/xmin incorrectly when a table does not exist.</li>
+Patch by Quan Zongliang.
+</ol><br />
 <h2><a id="10.03.0000">psqlODBC 10.03.0000 Release</a></h2>
 Changes:<br />
 <ol type="1">
index 7f47efe9b8af698234f65a2e957b6f3a62741611..c4d819917ecf362ffbf86f1042ab4f3d31657642 100644 (file)
--- a/version.h
+++ b/version.h
  * and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj.
  */
 #ifndef POSTGRESDRIVERVERSION
-#define POSTGRESDRIVERVERSION      "10.03.0000"
+#define POSTGRESDRIVERVERSION      "11.00.0000"
 #endif
 #ifndef POSTGRES_RESOURCE_VERSION
 #define POSTGRES_RESOURCE_VERSION  POSTGRESDRIVERVERSION
 #endif
 #ifndef PG_DRVFILE_VERSION
-#define PG_DRVFILE_VERSION     10,3,00,00
+#define PG_DRVFILE_VERSION     11,0,00,00
 #endif
 
 #endif