PostGIS
3.7.0dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches
◆
make_sql_schema_table_names()
raster2pgsql.make_sql_schema_table_names
(
schema_table
)
Definition at line
323
of file
raster2pgsql.py
.
323
def
make_sql_schema_table_names(schema_table):
324
st = schema_table.split(
'.'
)
325
if
len(st) == 1:
326
# TODO: Should we warn user that public is used implicitly?
327
st.insert(0,
"public"
)
328
assert
len(st) == 2,
"Invalid format of table name, expected [<schema>.]table"
329
return
(st[0], st[1])
330
raster2pgsql
Generated by
1.9.8