PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ make_sql_table_name()

def raster2pgsql.make_sql_table_name (   schema_table)

Definition at line 327 of file raster2pgsql.py.

327 def make_sql_table_name(schema_table):
328  st = schema_table.split('.')
329  assert len(st) == 1 or len(st) == 2, "Invalid format of table name, expected [<schema>.]table"
330  if len(st) == 2:
331  return st[1]
332  return st[0]
333 
def make_sql_table_name(schema_table)

Referenced by make_sql_create_gist(), and make_sql_register_overview().

Here is the caller graph for this function: