Skip to content

Commit

Permalink
made unique check case insensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
bgol committed Nov 20, 2014
1 parent 6029914 commit 8fdc4c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildcache.py
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ def processImportFile(tdenv, db, importPath, tableName):
tdenv.DEBUG1(" Values: {}", ', '.join(linein))
if deprecationFn: deprecationFn(linein, tdenv.debug)
for (colNo, index) in uniqueIndexes:
colValue = linein[colNo]
colValue = linein[colNo].upper()
try:
prevLineNo = index[colValue]
except KeyError:
Expand Down

0 comments on commit 8fdc4c9

Please sign in to comment.