bk commit - MyODBC 3.51 (1.441)

Below is the list of changes that have just been commited into a local
MyODBC 3.51 repository of 'dellis'. When 'dellis' does a push, they will
be propogaged to the main repository and within 2 hours after the push
into the public repository.

For more information on how to access the public repository see:
http://www.mysql.com/products/myodbc/faq_2.html#Development_ source

You can also browse the changes from public repository:
Complete repository: http://mysql.bkbits.net:8080/myodbc3/
This changeset : http://mysql.bkbits.net:8080/myodbc3/cset [at] 1.441

ChangeSet
1.441 05/01/27 23:40:08 dellis [at] niflheim.lan +2 -0
info.c:
Correcting/adding SQLGetTypeInfo() mappings for numerous column types. (Bug #8138)

BitKeeper/etc/logging_ok
1.42 05/01/27 23:40:08 dellis [at] niflheim.lan +1 -0
Logging to logging [at] openlogging.org accepted

driver/info.c
1.55 05/01/27 23:38:40 dellis [at] niflheim.lan +25 -6
Correcting/adding SQLGetTypeInfo() mappings for numerous column types. (Bug #8138)

# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: dellis
# Host: niflheim.lan
# Root: /home/dellis/mysqlab/bk/myodbc-3.51

--- 1.41/BitKeeper/etc/logging_ok 2005-01-11 23:30:43 -06:00
+++ 1.42/BitKeeper/etc/logging_ok 2005-01-27 23:40:08 -06:00
[at] [at] -1,5 +1,6 [at] [at]
Administrator [at] venu.
arjen [at] co3064164-a.bitbike.com
+dellis [at] niflheim.lan
eren [at] side.
greg [at] mysql.com
harun [at] homepx-xp2.

--- 1.54/driver/info.c 2005-01-26 15:02:25 -06:00
+++ 1.55/driver/info.c 2005-01-27 23:38:40 -06:00
[at] [at] -925,7 +925,7 [at] [at]
#endif

const uint SQL_GET_TYPE_INFO_FIELDS= array_elements(SQL_GET_TYPE_INFO_fields);
-#define MYSQL_DATA_TYPES 49
+#define MYSQL_DATA_TYPES 53

char sql_searchable[6],sql_unsearchable[6],sql_nullable[6],sql_no _nulls[6],
sql_bit[6],
[at] [at] -972,7 +972,7 [at] [at]
sql_no_nulls, "0",sql_searchable,"1","0","1",
"bigint unsigned auto_increment",NULL,NULL,sql_bigint, NULL,"10",NULL},

- /* SQL_LONGVARBINARY= -3 */
+ /* SQL_LONGVARBINARY= -4 */
{"long varbinary",sql_longvarbinary,"16777215","0x",NULL,NULL,sql_n ullable,
"0",sql_searchable,"0","0","0","mediumblob",NULL,NULL,sql_lo ngvarbinary,
NULL,NULL,NULL},
[at] [at] -983,13 +983,24 [at] [at]
"0",sql_searchable,"0","0","0",
"binary large object, use mediumblob instead",NULL,NULL,
sql_longvarbinary,NULL,NULL,NULL},
- {"tinyblob",sql_varbinary,"255","'","'",NULL,sql_nullable,
+ {"tinyblob",sql_longvarbinary,"255","'","'",NULL,sql_nullabl e,
"0",sql_searchable,"0","0","0","binary large object (0-255) ",NULL,NULL,
- sql_varbinary,NULL,NULL,NULL},
+ sql_longvarbinary,NULL,NULL,NULL},
{"mediumblob",sql_longvarbinary,"16777215","'","'",NULL,sql_ nullable,
"0",sql_searchable,"0","0","0","binary large object",NULL,NULL,
sql_longvarbinary,NULL,NULL,NULL},

+ /* SQL_VARBINARY= -3 */
+ {"varbinary",sql_varbinary,"255","'","'","length",sql_nullab le,
+ "0",sql_searchable,"0","0","0","varbinary",NULL,NULL,sql_var binary,
+ NULL,NULL,NULL},
+
+ /* SQL_BINARY= -2 */
+ {"binary",sql_binary,"255","'","'","length",sql_nullable,
+ "0",sql_searchable,"0","0","0","binary",NULL,NULL,sql_binary ,
+ NULL,NULL,NULL},
+
+
/* SQL_LONGVARCHAR= -1 */
{"long varchar",sql_longvarchar,"16777215","'","'",NULL,sql_nullabl e,
"0",sql_searchable,"0","0","0","mediumtext",NULL,NULL,
[at] [at] -1000,18 +1011,26 [at] [at]
{"mediumtext",sql_longvarchar,"16777215","'","'",NULL,sql_nu llable,
"0",sql_searchable,"0","0","0","mediumtext",NULL,NULL,
sql_longvarchar,NULL,NULL,NULL},
+ {"longtext",sql_longvarchar,"2147483647","'","'",NULL,sql_nu llable,
+ "0",sql_searchable,"0","0","0","longtext",NULL,NULL,
+ sql_longvarchar,NULL,NULL,NULL},
+ {"tinytext",sql_longvarchar,"255","'","'",NULL,sql_nullable,
+ "0",sql_searchable,"0","0","0","tinytext",NULL,NULL,
+ sql_longvarchar,NULL,NULL,NULL},

/* SQL_CHAR= 1 */
{"char",sql_char,"255","'","'","length",sql_nullable,
"0",sql_searchable,"0","0","0","char",NULL,NULL,sql_char,
NULL,NULL,NULL},

- /* SQL_DECIMAL= 3 */
+ /* SQL_NUMERIC= 2 */
{"numeric",sql_numeric,"19",NULL,NULL,"precision,scale",sql_ nullable,
"0",sql_searchable,"0","0","0","numeric","0","19",sql_numeri c,
NULL,"10",NULL},
+
+ /* SQL_DECIMAL= 3 */
{"decimal",sql_decimal,"19",NULL,NULL,"precision,scale",sql_ nullable,
- "0",sql_searchable,"0","0","0","decimal","0","19",sql_numeri c,
+ "0",sql_searchable,"0","0","0","decimal","0","19",sql_decima l,
NULL,"10",NULL},

/* SQL_INTEGER= 4 */

--
MySQL ODBC Mailing List
For list archives: http://lists.mysql.com/myodbc
To unsubscribe: http://lists.mysql.com/myodbc?unsub=gcdmo-myodbc [at] m.gmane.org
dellis [ Fr, 28 Januar 2005 06:40 ] [ ID #613007 ]
Datenbanken » gmane.comp.db.mysql.odbc » bk commit - MyODBC 3.51 (1.441)

Vorheriges Thema: About patch 3
Nächstes Thema: bk commit - Connector/ODBC 3.53 (1.17)