diff options
Diffstat (limited to 'src/interfaces/odbc/info.c')
-rw-r--r-- | src/interfaces/odbc/info.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/interfaces/odbc/info.c b/src/interfaces/odbc/info.c index 7c22f0b3ed9..c67ac0a4bd0 100644 --- a/src/interfaces/odbc/info.c +++ b/src/interfaces/odbc/info.c @@ -201,7 +201,7 @@ SQLGetInfo( /* * The ODBC spec wants ##.##.#### ...whatever... so prepend - * the driver version number to the dbms version string + * the driver version number to the dbms version string */ sprintf(tmp, "%s %s", POSTGRESDRIVERVERSION, conn->pg_version); p = tmp; @@ -1324,6 +1324,7 @@ SQLTables( result = SQLFetch(htbl_stmt); while ((result == SQL_SUCCESS) || (result == SQL_SUCCESS_WITH_INFO)) { + /* * Determine if this table name is a system table. If treating * system tables as regular tables, then no need to do this test. |