Skip to content

Commit 5cdb916

Browse files
committed
Fix current timestamp function
1 parent f6dfc4f commit 5cdb916

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/NHibernate/Dialect/Oracle9iDialect.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,8 @@ namespace NHibernate.Dialect
77
{
88
public class Oracle9iDialect : Oracle8iDialect
99
{
10-
public override string CurrentTimestampSelectString
11-
{
12-
get { return "select systimestamp from dual"; }
13-
}
10+
public override string CurrentTimestampSelectString =>
11+
$"select {CurrentTimestampSQLFunctionName} from dual";
1412

1513
public override string CurrentTimestampSQLFunctionName
1614
{

0 commit comments

Comments
 (0)