Skip to content

Commit

Permalink
Minor fix: wrap column names in index descriptions.
Browse files Browse the repository at this point in the history
  • Loading branch information
himselfv committed Sep 13, 2017
1 parent 4995779 commit b3ce9e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jet.dpr
Original file line number Diff line number Diff line change
Expand Up @@ -926,7 +926,7 @@ begin
fl := '';
Multiline := false;
for j := 0 to Length(Index.Columns) - 1 do begin
tmp := Index.Columns[j].Name;
tmp := '['+Index.Columns[j].Name+']';
case Index.Columns[j].Collation of
DB_COLLATION_ASC: tmp := tmp + ' ASC';
DB_COLLATION_DESC: tmp := tmp + ' DESC';
Expand Down

0 comments on commit b3ce9e3

Please sign in to comment.