diff options
author | Hiroshi Inoue <inoue@tpf.co.jp> | 2001-06-22 05:59:43 +0000 |
---|---|---|
committer | Hiroshi Inoue <inoue@tpf.co.jp> | 2001-06-22 05:59:43 +0000 |
commit | a8dbe428de8f8c11a047c441c9f1b5b5433b0115 (patch) | |
tree | 6940c6aa8c0a5be92a116264a7d5ff67954a80b5 /src/interfaces/odbc/execute.c | |
parent | d8d9ed931e8a2370d3995c40af2eb3bda18aecb0 (diff) | |
download | postgresql-a8dbe428de8f8c11a047c441c9f1b5b5433b0115.tar.gz postgresql-a8dbe428de8f8c11a047c441c9f1b5b5433b0115.zip |
Change SQLPrimaryKeys() so that it detects the primary key
other than tablename_pkey.
Diffstat (limited to 'src/interfaces/odbc/execute.c')
-rw-r--r-- | src/interfaces/odbc/execute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/odbc/execute.c b/src/interfaces/odbc/execute.c index ca9b2118887..fb64e8fe811 100644 --- a/src/interfaces/odbc/execute.c +++ b/src/interfaces/odbc/execute.c @@ -545,7 +545,7 @@ SQLNativeSql( { result = SQL_SUCCESS_WITH_INFO; conn->errornumber = STMT_TRUNCATED; - conn->errormsg = "The buffer was too small for the result."; + conn->errormsg = "The buffer was too small for the NativeSQL."; } } |