Skip to content

Commit

Permalink
Remove start time without matching end time
Browse files Browse the repository at this point in the history
  • Loading branch information
sm-shaw committed Oct 4, 2023
1 parent 53e3614 commit be2c9d3
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/mssqlserver/mssqlsolap.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,6 @@ proc CreateIndexes { odbc maxdop colstore bcp } {
set sql(33) "alter table dbo.supplier check constraint supplier_nation_fk"
set sql(34) "alter table dbo.orders check constraint order_customer_fk"
for { set i 1 } { $i <= 34 } { incr i } {
set startTime [clock seconds]
$odbc evaldirect $sql($i)
}
} elseif { $colstore } {
Expand Down Expand Up @@ -193,7 +192,6 @@ proc CreateIndexes { odbc maxdop colstore bcp } {
set sql(41) "alter table dbo.supplier check constraint supplier_nation_fk"
set sql(42) "alter table dbo.orders check constraint order_customer_fk"
for { set i 1 } { $i <= 42 } { incr i } {
set startTime [clock seconds]
$odbc evaldirect $sql($i)
}
} else {
Expand Down Expand Up @@ -232,7 +230,6 @@ proc CreateIndexes { odbc maxdop colstore bcp } {
set sql(33) "alter table dbo.supplier check constraint supplier_nation_fk"
set sql(34) "alter table dbo.orders check constraint order_customer_fk"
for { set i 1 } { $i <= 34 } { incr i } {
set startTime [clock seconds]
$odbc evaldirect $sql($i)
}
}
Expand Down

0 comments on commit be2c9d3

Please sign in to comment.