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

Method get_real_name

sqlparse/sql.py:372–374  ·  view source on GitHub ↗

Returns the real name (object name) of this identifier.

(self)

Source from the content-addressed store, hash-verified

370 return self.get_alias() or self.get_real_name()
371
372 def get_real_name(self):
373 """Returns the real name (object name) of this identifier."""
374 return None
375
376 def get_parent_name(self):
377 """Return name of the parent object if any.

Calls

no outgoing calls