Skip to content

Commit

Permalink
Fixed an Oracle NULL = NULL compare error (issue chucknorris#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
rdingwall committed Apr 2, 2012
1 parent 3774c30 commit e1f1463
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion product/roundhouse.databases.oracle/OracleDatabase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ public string get_version_id_script()
SELECT id
FROM (SELECT * FROM {0}_{1}
WHERE
repository_path = :repository_path
NVL(repository_path, '') = NVL(:repository_path, '')
ORDER BY entry_date DESC)
WHERE ROWNUM < 2
",
Expand Down

0 comments on commit e1f1463

Please sign in to comment.