You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 24, 2022. It is now read-only.
- provide expected parameterized statement when test does string comparison on captured sql
- use table that has nullable string column for OnDbNullFilter test
- handle auto incremented ids, oracle column alias casing, and converting result from OracleDbValue, for SqlExpressionTests Dictionary and List tests
@@ -120,7 +121,9 @@ public void Can_capture_all_Single_Apis()
120
121
Is.EqualTo("select id, firstname, lastname, age from person where (age = 42) limit 1").
121
122
Or.EqualTo("select top 1 id, firstname, lastname, age from person where (age = 42)").
122
123
Or.EqualTo("select id, firstname, lastname, age from person where (age = 42) order by 1 offset 0 rows fetch next 1 rows only").//VistaDB
123
-
Or.EqualTo("select * from (\r select ssormlite1.*, rownum rnum from (\r select id, firstname, lastname, age from person where (age = 42) order by person.id) ssormlite1\r where rownum <= 0 + 1) ssormlite2 where ssormlite2.rnum > 0"));//Oracle
124
+
Or.EqualTo("select * from (\r select ssormlite1.*, rownum rnum from (\r select id, firstname, lastname, age from person where (age = 42) order by person.id) ssormlite1\r where rownum <= 0 + 1) ssormlite2 where ssormlite2.rnum > 0").//Oracle
125
+
Or.EqualTo("select * from (\r select ssormlite1.*, rownum rnum from (\r select id, firstname, lastname, age from person where (age = @0) order by person.id) ssormlite1\r where rownum <= 0 + 1) ssormlite2 where ssormlite2.rnum > 0")//Oracle with UseParameterizeSqlExpressions
0 commit comments