PostGIS 3.6.2dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ make_sql_full_table_name()

raster2pgsql.make_sql_full_table_name (   schema_table)

Definition at line 324 of file raster2pgsql.py.

324def make_sql_full_table_name(schema_table):
325 st = make_sql_schema_table_names(schema_table)
326 table = "\"%s\".\"%s\"" % (st[0], st[1])
327 return table
328