MCPcopy
hub / github.com/andialbrecht/sqlparse / is_wildcard

Method is_wildcard

sqlparse/sql.py:449–452  ·  view source on GitHub ↗

Return ``True`` if this identifier contains a wildcard.

(self)

Source from the content-addressed store, hash-verified

447 """
448
449 def is_wildcard(self):
450 """Return ``True`` if this identifier contains a wildcard."""
451 _, token = self.token_next_by(t=T.Wildcard)
452 return token is not None
453
454 def get_typecast(self):
455 """Returns the typecast or ``None`` of this object as a string."""

Calls 1

token_next_byMethod · 0.80

Tested by 1