Unix Technical Forum

[ psqlodbc-Bugs-1000620 ] SQLStatistics returns UNKNOWN instead of real column names

This is a discussion on [ psqlodbc-Bugs-1000620 ] SQLStatistics returns UNKNOWN instead of real column names within the pgsql Interfaces odbc forums, part of the PostgreSQL category; --> Bugs item #1000620, was opened at 2006-04-26 17:24 You can respond by visiting: http://pgfoundry.org/tracker/?func=d...oup_id=1000125 Category: None Group: None >Status: ...


Go Back   Unix Technical Forum > Database Server Software > PostgreSQL > pgsql Interfaces odbc

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 04-16-2008, 01:58 AM
noreply@pgfoundry.org
 
Posts: n/a
Default [ psqlodbc-Bugs-1000620 ] SQLStatistics returns UNKNOWN instead of real column names

Bugs item #1000620, was opened at 2006-04-26 17:24
You can respond by visiting:
http://pgfoundry.org/tracker/?func=d...oup_id=1000125

Category: None
Group: None
>Status: Closed

Resolution: None
Priority: 3
Submitted By: Nobody (None)
Assigned to: Nobody (None)
Summary: SQLStatistics returns UNKNOWN instead of real column names

Initial Comment:
Created By: den <NOSPAM> intech.ru
Description:

STEPS TO REPRODUCE
1. CREATE TABLE temp_table (a int)
2. ALTER TABLE temp_table DROP COLUMN a
3. ALTER TABLE temp_table ADD COLUMN a int
4. CREATE INDEX temp_index ON temp_table (a)

CAUSE OF FAILURE
Source code has a petty hole based on the erroneous interpretation of the
column index stored in the pg_index.indkey. In this case the column index is
not a sequence number of column, but value of the pg_attribute.attnum.

Listing of source code: info.c (psqlodbc-08.00.0102)
....
2824 if (fields_vector[i] == OID_ATTNUM)
2825 {
2826 set_tuplefield_string(&row->tuple[8], "oid");
2827 mylog("%s: column name = oid\n", func);
2828 }
->2829 else if (fields_vector[i] < 0 || fields_vector[i] > total_columns)
2830 {
2831 set_tuplefield_string(&row->tuple[8], "UNKNOWN");
2832 mylog("%s: column name = UNKNOWN\n", func);
2833 }
2834 else
2835 {
->2836 set_tuplefield_string(&row->tuple[8],
column_names[fields_vector[i] - 1]);
2837 mylog("%s: column name = '%s'\n", func,
column_names[fields_vector[i] - 1]);
2838 }
...

----------------------------------------------------------------------

>Comment By: Dave Page (dpage)

Date: 2006-05-14 09:28

Message:
Yes, this will make it's way into the distro. Thanks for testing

----------------------------------------------------------------------

Comment By: Nobody (None)
Date: 2006-05-03 12:11

Message:
with this dll now it's ok

the default dll with comes with the instalation give me the error that i reported.

will this changes made in the default distribution?
kopp

----------------------------------------------------------------------

Comment By: Hiroshi Inoue (hinoue)
Date: 2006-04-27 03:44

Message:
Please try the experimental version.
Please download it from this page and replace
the dll(psqlodbc35w.dll) by the one at
http://www.geocities.jp/inocchichich...dbc/index.html
..

regards,
Hiroshi Inoue

----------------------------------------------------------------------

You can respond by visiting:
http://pgfoundry.org/tracker/?func=d...oup_id=1000125

---------------------------(end of broadcast)---------------------------
TIP 6: explain analyze is your friend

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 04:32 PM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
www.UnixAdminTalk.com