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

◆ make_sql_schema_table_names()

raster2pgsql.make_sql_schema_table_names (   schema_table)

Definition at line 315 of file raster2pgsql.py.

315def make_sql_schema_table_names(schema_table):
316 st = schema_table.split('.')
317 if len(st) == 1:
318 # TODO: Should we warn user that public is used implicitly?
319 st.insert(0, "public")
320 assert len(st) == 2, "Invalid format of table name, expected [<schema>.]table"
321 return (st[0], st[1])
322