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