Prep release 12.00.0000 REL-12_00_0000
authorHiroshi Saito <hiroshi@winpg.jp>
Fri, 11 Oct 2019 13:35:43 +0000 (22:35 +0900)
committerHiroshi Saito <hiroshi@winpg.jp>
Fri, 11 Oct 2019 13:35:43 +0000 (22:35 +0900)
configure.ac
docs/release.html
version.h

index 1be73419abf37ec4223c09ad95c95d6968aa64ec..241c1275ca28f828d2513d76105728c5072a81dd 100644 (file)
@@ -1,5 +1,5 @@
 # Process this file with autoconf to produce a configure script.
-AC_INIT(psqlodbc, 11.01.0000, [pgsql-odbc@postgresql.org])
+AC_INIT(psqlodbc, 12.00.0000, [pgsql-odbc@postgresql.org])
 AC_PREREQ(2.57)
 AC_CONFIG_AUX_DIR(config)
 AM_INIT_AUTOMAKE
index 8636c7750edd9a199fd7cf0e5aa350fe6632d93a..896e6cae9fcf2fb08097812dbc17a304e747eb67 100644 (file)
@@ -7,6 +7,19 @@
 
   <body bgcolor="#ffffff" text="#000000" link="#ff0000" vlink="#a00000" alink="#0000ff">
 
+<h1>psqlODBC release notes</h1>
+<hr>
+<h2><a id="12.00.0000">psqlODBC 12.00.0000 Release</a></h2>
+Changes:<br />
+<ol type="1">
+<li>Fix the bug that SQLGetDescField() for Field SQL_DESC_COUNT returns SQLINTEGER value which should be of type SQLSMALLINT.</li>
+<li>SQLGetTypeInfo() filters SQL_TYPE_DATE, SQL_TYPE_TIME and SQL_TYPE_TIMESTAMP for ODBC 2.x applications.</li>
+<li>Added support for scalar functions TIMESTAMPADD(), TIMESTAMPDIFF() and EXTRACT() functions.</li>
+<li>The macro IS_NOT_SPACE() is used for not pointers but integers.</li>
+<li>Fix a crash bug when SQLProcedureColumns() handles satisfies_hash_partition(). </li>
+The proargmodes column of satisfies_hash_partition()'s pg_proc entry is not null but the proallargtypes column is null. <br />
+Per report from James.wang.
+</ol><br />
 <h1>psqlODBC release notes</h1>
 <hr>
 <h2><a id="11.01.0000">psqlODBC 11.01.0000 Release</a></h2>
index a625fe40d255acbdebe593e860fb792c5afe5173..51ea7efafa98ddcc5139c7e7c67e46af2c7bcf8f 100644 (file)
--- a/version.h
+++ b/version.h
  * and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj.
  */
 #ifndef POSTGRESDRIVERVERSION
-#define POSTGRESDRIVERVERSION      "11.01.0000"
+#define POSTGRESDRIVERVERSION      "12.00.0000"
 #endif
 #ifndef POSTGRES_RESOURCE_VERSION
 #define POSTGRES_RESOURCE_VERSION  POSTGRESDRIVERVERSION
 #endif
 #ifndef PG_DRVFILE_VERSION
-#define PG_DRVFILE_VERSION     11,1,00,00
+#define PG_DRVFILE_VERSION     12,0,00,00
 #endif
 
 #endif