1. Query OK, 0 rows affected (0.02 sec)
    2. obclient> create table t1(id bigint not null primary key, gmt_create datetime not null default current_timestamp);
    3. Query OK, 0 rows affected (0.09 sec)
    4. obclient> insert into t1(id) values(1),(2),(3);
    5. Query OK, 3 rows affected (0.02 sec)
    6. Records: 3 Duplicates: 0 Warnings: 0
    7. obclient> select * from t1;
    8. +----+---------------------+
    9. | ID | GMT_CREATE |
    10. | 2 | 2020-02-28 09:47:07 |
    11. | 3 | 2020-02-28 09:47:07 |
    12. +----+---------------------+
    13. 3 rows in set (0.00 sec)
    14. obclient> drop table t1;
    15. Query OK, 0 rows affected (0.03 sec)
    16. obclient> show recyclebin\G
    17. *************************** 1. row ***************************
    18. OBJECT_NAME: __recycle_$_20200102_1585650066255592
    19. ORIGINAL_NAME: t1
    20. 1 row in set (0.03 sec)
    21. obclient> flashback table __recycle_$_20200102_1585650066255592 to before drop rename to t1;
    22. Query OK, 0 rows affected (0.02 sec)
    23. obclient> select * from t1;
    24. +----+---------------------+
    25. | ID | GMT_CREATE |
    26. +----+---------------------+
    27. | 1 | 2020-02-28 09:47:07 |
    28. | 2 | 2020-02-28 09:47:07 |
    29. | 3 | 2020-02-28 09:47:07 |