@@ -512,29 +512,29 @@ IndexLookUp_7 10000.00 root
512512│ └─TableRowIDScan_8(Probe) 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo
513513└─TableRowIDScan_6(Probe) 0.00 cop[tikv] table:t1 keep order:false, stats:pseudo
514514do sleep(0.1);
515- explain select /*+ index_lookup_pushdown(t1, i) */ * from t1 as of timestamp NOW(6) - interval 0.05 second;
515+ explain select /*+ index_lookup_pushdown(t1, i) */ * from t1 as of timestamp NOW(6) - interval 0.1 second;
516516id estRows task access object operator info
517517TableReader_6 10000.00 root data:TableFullScan_5
518518└─TableFullScan_5 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo
519519Level Code Message
520520Warning 1815 hint INDEX_LOOKUP_PUSHDOWN is inapplicable, stale read is not supported
521- start transaction read only as of timestamp now(6) - interval 0.05 second;
521+ start transaction read only as of timestamp now(6) - interval 0.1 second;
522522explain select /*+ index_lookup_pushdown(t1, i) */ * from t1;
523523id estRows task access object operator info
524524TableReader_6 10000.00 root data:TableFullScan_5
525525└─TableFullScan_5 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo
526526Level Code Message
527527Warning 1815 hint INDEX_LOOKUP_PUSHDOWN is inapplicable, stale read is not supported
528528rollback;
529- set transaction read only as of timestamp now(6) - interval 0.05 second;
529+ set transaction read only as of timestamp now(6) - interval 0.1 second;
530530explain select /*+ index_lookup_pushdown(t1, i) */ * from t1;
531531id estRows task access object operator info
532532TableReader_6 10000.00 root data:TableFullScan_5
533533└─TableFullScan_5 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo
534534Level Code Message
535535Warning 1815 hint INDEX_LOOKUP_PUSHDOWN is inapplicable, stale read is not supported
536536insert ignore into mysql.tidb VALUES ('tikv_gc_safe_point', '20240131-00:00:00.000 +0800', 'mock for index lookup push down test');
537- set @@tidb_snapshot=(now(6) - interval 0.05 second);
537+ set @@tidb_snapshot=(now(6) - interval 0.1 second);
538538explain select /*+ index_lookup_pushdown(t1, i) */ * from t1;
539539id estRows task access object operator info
540540TableReader_6 10000.00 root data:TableFullScan_5
0 commit comments