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

◆ make_sql_full_table_name()

raster2pgsql.make_sql_full_table_name (   schema_table)

Definition at line 331 of file raster2pgsql.py.

331def make_sql_full_table_name(schema_table):
332 st = make_sql_schema_table_names(schema_table)
333 table = "\"%s\".\"%s\"" % (st[0], st[1])
334 return table
335