Skip to content

Commit f92efbc

Browse files
committed
db manager oracle plugin: avoid tablespace index parameter
1 parent 62a4301 commit f92efbc

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

python/plugins/db_manager/db_plugins/oracle/connector.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1621,10 +1621,8 @@ def createSpatialIndex(self, table, geom_column='GEOM'):
16211621
CREATE INDEX {0}
16221622
ON {1}({2})
16231623
INDEXTYPE IS MDSYS.SPATIAL_INDEX
1624-
PARAMETERS ('TABLESPACE={3} SDO_DML_BATCH_SIZE = 1')
16251624
""".format(idx_name, self.quoteId(table),
1626-
self.quoteId(geom_column),
1627-
u"{}_INDEX".format(schema))
1625+
self.quoteId(geom_column))
16281626
self._execute_and_commit(sql)
16291627

16301628
def deleteSpatialIndex(self, table, geom_column='GEOM'):

0 commit comments

Comments
 (0)