You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For current implementation we construct the delete sql to delete expired rows, for example:
DELETE FROM t WHERE pk IN (1, 2)
If the primary key is a float/double value, the expired rows may not be deleted successfully because the precision problem. We need to forbid creating/altering a table with TTL options in this case.
The text was updated successfully, but these errors were encountered:
For current implementation we construct the delete sql to delete expired rows, for example:
If the primary key is a float/double value, the expired rows may not be deleted successfully because the precision problem. We need to forbid creating/altering a table with TTL options in this case.
The text was updated successfully, but these errors were encountered: