PostGIS  3.7.0dev-r@@SVN_REVISION@@

◆ make_sql_drop_raster_table()

def raster2pgsql.make_sql_drop_raster_table (   table)

Definition at line 342 of file raster2pgsql.py.

342 def make_sql_drop_raster_table(table):
343  st = make_sql_schema_table_names(table)
344 
345  if len(st[0]) == 0:
346  target = "'', '%s'" % st[1]
347  else:
348  target = "'%s', '%s'" % (st[0], st[1])
349  sql = "SELECT DropRasterTable(%s);\n" % target
350  logit("SQL: %s" % sql)
351  return sql
352 
353 
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: