File tree Expand file tree Collapse file tree 2 files changed +0
-5
lines changed Expand file tree Collapse file tree 2 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -420,22 +420,19 @@ typedef ssize_t lint;
420
420
# define INT64PF " %lld"
421
421
# define UINT64scan " llu"
422
422
# define UINT64PFx " %016llx"
423
- # define TIMETPF " %ld"
424
423
#elif defined __APPLE__
425
424
/* Apple prefers to call the 64-bit types 'long long'
426
425
in both 32-bit and 64-bit environments. */
427
426
# define UINT32PF " %" PRIu32
428
427
# define INT64PF " %lld"
429
428
# define UINT64scan " llu"
430
429
# define UINT64PFx " %016llx"
431
- # define TIMETPF " %" PRIdFAST32
432
430
#else
433
431
/* Use the integer types and formatting strings defined in the C99 standard. */
434
432
# define UINT32PF " %" PRIu32
435
433
# define INT64PF " %" PRId64
436
434
# define UINT64scan PRIu64
437
435
# define UINT64PFx " %016" PRIx64
438
- # define TIMETPF " %" PRIdFAST32
439
436
#endif
440
437
441
438
#ifdef UNIV_INNOCHECKSUM
Original file line number Diff line number Diff line change @@ -255,8 +255,6 @@ row_build_index_entry_low(
255
255
256
256
ut_ad (dfield_is_null (dfield2) ||
257
257
dfield_get_len (dfield2) == 0 || dfield2->data );
258
- ut_ad (dfield2->type .mtype != DATA_MISSING
259
- || !index->is_committed ());
260
258
} else {
261
259
dfield2 = dtuple_get_nth_field (row, col_no);
262
260
ut_ad (dfield_get_type (dfield2)->mtype == DATA_MISSING
You can’t perform that action at this time.
0 commit comments