diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-02-11 04:56:58 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-02-11 04:56:58 +0000 |
commit | 9d244ddb26eb8521510a01271e61f9c37e74827e (patch) | |
tree | 575424831f2a9ca9cdbf8cea37ce6fe4804a57dc /src/interfaces/odbc/info.c | |
parent | 71f2b6f015b5f8da162e808a37bd7d3cc8732ce3 (diff) |
Cleanup of source.
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. |