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

◆ make_sql_full_table_name()

raster2pgsql.make_sql_full_table_name (   schema_table)

Definition at line 323 of file raster2pgsql.py.

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