Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Commit

Permalink
fix: remove column ordering by name
Browse files Browse the repository at this point in the history
Closes #33
  • Loading branch information
justinlettau committed Jul 7, 2018
1 parent ed92901 commit 80fb9d7
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/sql/sys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,6 @@ export const columnRead: string = `
and c.object_id = dc.parent_object_id
and c.column_id = dc.parent_column_id
left join sys.identity_columns ic on c.is_identity = 1 and c.object_id = ic.object_id and c.column_id = ic.column_id
order by
ic.is_identity desc,
c.name
`;

/**
Expand Down

0 comments on commit 80fb9d7

Please sign in to comment.