List:Commits« Previous MessageNext Message »
From:V Narayanan Date:January 13 2009 9:57am
Subject:bzr push into mysql-6.0-bugteam branch (v.narayanan:2961 to 2962) Bug#40092
View as plain text  
 2962 V Narayanan	2009-01-13
      Bug#40092 Storage Engine API uses time_t datatype
      
      Change the usage of time_t in the Storage engine API
      to datatypes with known size.
modified:
  sql/handler.h

 2961 Patrick Crews	2009-01-12 [merge]
      merge 5.1 -> 6.0
modified:
  mysql-test/extra/binlog_tests/database.test
  mysql-test/suite/binlog/r/binlog_database.result

=== modified file 'sql/handler.h'
--- a/sql/handler.h	2008-12-31 13:49:36 +0000
+++ b/sql/handler.h	2009-01-13 09:52:16 +0000
@@ -999,9 +999,9 @@ typedef struct {
   ulonglong delete_length;
   ha_rows records;
   ulong mean_rec_length;
-  time_t create_time;
-  time_t check_time;
-  time_t update_time;
+  ulong create_time;
+  ulong check_time;
+  ulong update_time;
   ulonglong check_sum;
 } PARTITION_INFO;
 
@@ -1335,9 +1335,9 @@ public:
   ha_rows records;
   ha_rows deleted;			/* Deleted records */
   ulong mean_rec_length;		/* physical reclength */
-  time_t create_time;			/* When table was created */
-  time_t check_time;
-  time_t update_time;
+  ulong create_time;			/* When table was created */
+  ulong check_time;
+  ulong update_time;
   uint block_size;			/* index block size */
   
   /*

Thread
bzr push into mysql-6.0-bugteam branch (v.narayanan:2961 to 2962) Bug#40092V Narayanan13 Jan