We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46046a2 commit 4a6a35dCopy full SHA for 4a6a35d
src/NHibernate.Test/CacheTest/QueryCacheFixture.cs
@@ -76,14 +76,14 @@ public void QueryCacheWithScalarReturn()
76
using (var s = OpenSession())
77
{
78
var result = s
79
- .CreateSQLQuery("select cast(200012 as DECIMAL(19,5)) from Simple where id_ = 1")
+ .CreateSQLQuery("select cast(200012 as DECIMAL(18,5)) from Simple where id_ = 1")
80
.SetCacheable(true)
81
.UniqueResult<decimal>();
82
83
Assert.That(result, Is.EqualTo(200012), "Unexpected non-cached result");
84
85
result = s
86
87
88
89
0 commit comments