maybe-make-retryable ( statement -- statement )


Vocabulary
db.queries

Definition
USING: accessors db.types kernel sequences ;

IN: db.queries

: maybe-make-retryable ( statement -- statement )
dup in-params>> [ generator-bind? ] any?
[ make-retryable ] when ;