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

◆ make_sql_schema_table_names()

raster2pgsql.make_sql_schema_table_names (   schema_table)

Definition at line 316 of file raster2pgsql.py.

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