Prep release 10.02.0000 REL-10_02_0000
authorHiroshi Saito <hiroshi@winpg.jp>
Fri, 30 Mar 2018 14:06:14 +0000 (23:06 +0900)
committerHiroshi Saito <hiroshi@winpg.jp>
Fri, 30 Mar 2018 14:06:14 +0000 (23:06 +0900)
configure.ac
docs/release.html
version.h

index ba761ee223cf00878264e1f69fe38e56eb94d2d2..457a2adcffb2979814579c9c36eed68df65d9b61 100644 (file)
@@ -1,5 +1,5 @@
 # Process this file with autoconf to produce a configure script.
-AC_INIT(psqlodbc, 10.01.0000, [pgsql-odbc@postgresql.org])
+AC_INIT(psqlodbc, 10.02.0000, [pgsql-odbc@postgresql.org])
 AC_PREREQ(2.57)
 AC_CONFIG_AUX_DIR(config)
 AM_INIT_AUTOMAKE
index 32b122cf7bf2ed5544139c3dd8cc70442faae39f..3c668cebfb2a7d0bc4fabf3a6ae7bb05732c57e1 100644 (file)
@@ -7,6 +7,30 @@
 
   <body bgcolor="#ffffff" text="#000000" link="#ff0000" vlink="#a00000" alink="#0000ff">
 
+<h1>psqlODBC release notes</h1>
+<hr>
+<h2><a id="10.02.0000">psqlODBC 10.02.0000 Release</a></h2>
+Changes:<br />
+<ol type="1">
+<li>It's safer to call setlocale(LC_CTYPE, "") than calling setlocale(LC_ALL, "").</li>
+Report and patch by Mario De Frutos.
+<li>Avoid replacing effective notice messages.</li>
+Report from Wolfgang Apolinarski. <br />
+Patch by Clemens Ladisch.
+<li>Handle MALLOC/REALLOC errors while fetching tuples more effectively.</li>
+Per report from Haruka Takatsuka.
+<li>Make SQLSetPos(SQL_DELETE/SQL_REFRESH) more effective.
+Because queries calling currtid(2) like<br />
+select .. from .. where ctid=currtid2(.., ..)<br />
+cause Seq Scan, their execution may be very slow.<br />
+It is better to execute queries using subqueries like<br />
+select .. from .. where ctid=(select currtid2(.., ..))<br />
+because they cause Tid Scan.<br />
+Report and changes by Tsunakawa Takayuki.
+<li>Fix a crash bug in AddDeleted().</li>
+Report and patch by Takayuki Tsunakawa.
+</ol><br />
+
 <h1>psqlODBC release notes</h1>
 <hr>
 <h2><a id="10.01.0000">psqlODBC 10.01.0000 Release</a></h2>
index 486a73a3451c4811cb73b50bf20e792c9ce0c07a..0767bab78b6e4172bdaed1e4ada245f3001492fe 100644 (file)
--- a/version.h
+++ b/version.h
  * and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj.
  */
 #ifndef POSTGRESDRIVERVERSION
-#define POSTGRESDRIVERVERSION      "10.01.0000"
+#define POSTGRESDRIVERVERSION      "10.02.0000"
 #endif
 #ifndef POSTGRES_RESOURCE_VERSION
 #define POSTGRES_RESOURCE_VERSION  POSTGRESDRIVERVERSION
 #endif
 #ifndef PG_DRVFILE_VERSION
-#define PG_DRVFILE_VERSION     10,1,00,00
+#define PG_DRVFILE_VERSION     10,2,00,00
 #endif
 
 #endif