PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ make_sql_drop_raster_table()

def raster2pgsql.make_sql_drop_raster_table (   table)

Definition at line 341 of file raster2pgsql.py.

341 def make_sql_drop_raster_table(table):
342  st = make_sql_schema_table_names(table)
343 
344  if len(st[0]) == 0:
345  target = "'', '%s'" % st[1]
346  else:
347  target = "'%s', '%s'" % (st[0], st[1])
348  sql = "SELECT DropRasterTable(%s);\n" % target
349  logit("SQL: %s" % sql)
350  return sql
351 
352 
def logit(msg)
def make_sql_drop_raster_table(table)
def make_sql_schema_table_names(schema_table)

References logit(), and make_sql_schema_table_names().

Referenced by main().

Here is the call graph for this function:
Here is the caller graph for this function: