PostGIS
3.7.0dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches
◆
make_sql_table_name()
raster2pgsql.make_sql_table_name
(
schema_table
)
Definition at line
336
of file
raster2pgsql.py
.
336
def
make_sql_table_name(schema_table):
337
st = schema_table.split(
'.'
)
338
assert
len(st) == 1
or
len(st) == 2,
"Invalid format of table name, expected [<schema>.]table"
339
if
len(st) == 2:
340
return
st[1]
341
return
st[0]
342
raster2pgsql
Generated by
1.9.8