List:Commits« Previous MessageNext Message »
From:jwinstead Date:May 2 2007 4:01pm
Subject:Connector/ODBC 3.51 commit: r372 - trunk/test
View as plain text  
Modified:
   trunk/test/my_types.c
Log:
Disable the body of t_longlong1, since SQLBIGINT isn't really portable.
unixODBC defines it as a struct on 32-bit platforms.


Modified: trunk/test/my_types.c
===================================================================
--- trunk/test/my_types.c	2007-05-02 03:11:37 UTC (rev 371)
+++ trunk/test/my_types.c	2007-05-02 16:01:19 UTC (rev 372)
@@ -25,6 +25,7 @@
 
 DECLARE_TEST(t_longlong1)
 {
+#if SQLBIGINT_MADE_PORTABLE
   SQLBIGINT session_id, ctn;
 
   ok_sql(hstmt, "DROP TABLE IF EXISTS t_longlong");
@@ -63,6 +64,7 @@
   ok_stmt(hstmt, SQLFreeStmt(hstmt, SQL_CLOSE));
 
   ok_sql(hstmt, "DROP TABLE IF EXISTS t_longlong");
+#endif
 
   return OK;
 }

Thread
Connector/ODBC 3.51 commit: r372 - trunk/testjwinstead2 May