smiklosovic commented on code in PR #1853:
URL: https://github.com/apache/cassandra/pull/1853#discussion_r966828969


##########
pylib/cqlshlib/cql3handling.py:
##########
@@ -517,6 +518,8 @@ def cf_prop_val_completer(ctxt, cass):
         return [Hint('<\'none\'|\'blocking\'>')]
     if this_opt == 'allow_auto_snapshot':
         return [Hint('<boolean>')]
+    if this_opt == 'auto_snapshot_ttl':
+        return [Hint('<duration>')]

Review Comment:
   duration is seconds, minutes, hours or days. (s, m, h, d). This nicely 
relates to what DurationSpec is based on. Duration spec has resolution to `ns` 
but anything less than seconds for snapshot ttl is hardly applicable.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to