Skip to content

Commit b4d8340

Browse files
committed
Reverts commit dc569c2
1 parent f4e49cc commit b4d8340

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

Orm/Xtensive.Orm.Oracle/Sql.Drivers.Oracle/v11/Translator.cs

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,6 @@ namespace Xtensive.Sql.Drivers.Oracle.v11
1313
{
1414
internal class Translator : v10.Translator
1515
{
16-
//so called INITRANS value
17-
protected const int TableTransactionalParallelismLevel = 7;
18-
protected const int IndexTransactionalParallelismLevel = 7;
19-
20-
public override string Translate(SqlCompilerContext context, SqlCreateTable node, CreateTableSection section)
21-
{
22-
if (section == CreateTableSection.TableElementsExit)
23-
return $") INITRANS {TableTransactionalParallelismLevel} ";
24-
return base.Translate(context, node, section);
25-
}
26-
27-
public override string Translate(SqlCompilerContext context, SqlCreateIndex node, CreateIndexSection section)
28-
{
29-
if (section == CreateIndexSection.ColumnsExit)
30-
return $") INITRANS {IndexTransactionalParallelismLevel}";
31-
//CreateIndexSection.ColumnsExit:
32-
//return ")"
33-
return base.Translate(context, node, section);
34-
}
35-
3616
public override string Translate(SqlCompilerContext context, SqlOrder node, NodeSection section)
3717
{
3818
if (section == NodeSection.Exit) {

0 commit comments

Comments
 (0)