Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Process this file with autoconf to produce a configure script.
AC_INIT(psqlodbc, 17.00.0006, [pgsql-odbc@postgresql.org])
AC_INIT(psqlodbc, 17.00.0007, [pgsql-odbc@postgresql.org])
AC_PREREQ(2.57)
AC_CONFIG_AUX_DIR(config)
AM_INIT_AUTOMAKE
Expand Down
4 changes: 2 additions & 2 deletions connection.c
Original file line number Diff line number Diff line change
Expand Up @@ -1094,7 +1094,7 @@ LIBPQ_CC_connect(ConnectionClass *self, char *salt_para)

if (ret = LIBPQ_connect(self), ret <= 0)
return ret;

/* Check current DateStyle first */
res = CC_send_query(self, "SHOW DateStyle;", NULL, READ_ONLY_QUERY, NULL);
if (QR_command_maybe_successful(res))
Expand All @@ -1116,7 +1116,7 @@ LIBPQ_CC_connect(ConnectionClass *self, char *salt_para)
}
}
}

if (QR_command_maybe_successful(res))
{
handle_show_results(res);
Expand Down
22 changes: 21 additions & 1 deletion docs/release.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,32 @@
<h1>psqlODBC release notes</h1>
<hr>
<ol type="1">
<h2><a id="17.00.0006">psqlODBC 17.00.0006 Release</a></h2>
<h2><a id="17.00.0007">psqlODBC 17.00.0007 Release</a></h2>
Changes:<br />
<li>
Fix: GetDescRec on big-endian architectures <a href="https://github.com/postgresql/psqlodbc/pull/130">PR #130</a>
Author: <a href="https://github.com/df7cb">Christoph Berg</a>
</li>
<li>
Refactor: use operator(pg_catalog.operator) to fully qualify the operator <a href="https://github.com/postgresql/psqlodbc/pull/139">PR #139</a>
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
</li>
<li>
Fix: Make sure the null terminator len_for_wcs_term is included in the decision to realloc <a href="https://github.com/postgresql/psqlodbc/pull/144">PR #145</a>
Author: <a href="https://github.com/markmaker">Mark Maker</a>
</li>
<li>
Refactor: check the datestyle before setting it, if it is different than ISO change it, otherwise leave it as is <a href="https://github.com/postgresql/psqlodbc/pull/144">PR #144</a>
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
</li>

<h2><a id="17.00.0006">psqlODBC 17.00.0006 Release</a></h2>
Changes:<br />
<li>
Refactor: Comprehensive variable naming improvements across the codebase <a href="https://github.com/postgresql/psqlodbc/pull/125">PR #125</a>
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
</li>

<li>
Enhancement: Renamed ConnectionClass structure variables for better readability (e.g., pqconn → postgresConnection, status → connectionStatus)
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
Expand Down
4 changes: 2 additions & 2 deletions version.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
* and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj.
*/
#ifndef POSTGRESDRIVERVERSION
#define POSTGRESDRIVERVERSION "17.00.0006"
#define POSTGRESDRIVERVERSION "17.00.0007"
#endif
#ifndef POSTGRES_RESOURCE_VERSION
#define POSTGRES_RESOURCE_VERSION POSTGRESDRIVERVERSION
#endif
#ifndef PG_DRVFILE_VERSION
#define PG_DRVFILE_VERSION 17,0,00,06
#define PG_DRVFILE_VERSION 17,0,00,07
#endif

#endif