PostGIS
3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches
◆
make_sql_table_name()
raster2pgsql.make_sql_table_name
(
schema_table
)
Definition at line
328
of file
raster2pgsql.py
.
328
def
make_sql_table_name(schema_table):
329
st = schema_table.split(
'.'
)
330
assert
len(st) == 1
or
len(st) == 2,
"Invalid format of table name, expected [<schema>.]table"
331
if
len(st) == 2:
332
return
st[1]
333
return
st[0]
334
raster2pgsql
Generated by
1.9.8