Skip to content

Commit 84dde63

Browse files
authored
Merge branch 'baselines/pr_5136-reviewed' into baselines/pr_5136
2 parents 0d840ac + 8229af5 commit 84dde63

File tree

3,795 files changed

+43362
-5151
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,795 files changed

+43362
-5151
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
BeforeExecute
2+
-- Access.Ace.Odbc AccessODBC (asynchronously)
3+
4+
SELECT
5+
COUNT([t3].[PersonID])
6+
FROM
7+
(
8+
SELECT
9+
[t1].[PersonID]
10+
FROM
11+
[Person] [t1]
12+
UNION ALL
13+
SELECT
14+
[t2].[ParentID] as [PersonID]
15+
FROM
16+
[Parent] [t2]
17+
) [t3]
18+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
BeforeExecute
2+
-- Access.Ace.Odbc AccessODBC (asynchronously)
3+
4+
SELECT
5+
COUNT(*)
6+
FROM
7+
(
8+
SELECT
9+
[t1].[PersonID]
10+
FROM
11+
[Person] [t1]
12+
UNION ALL
13+
SELECT
14+
[t2].[ParentID] as [PersonID]
15+
FROM
16+
[Parent] [t2]
17+
) [t3]
18+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
BeforeExecute
2+
-- Access.Ace.Odbc AccessODBC (asynchronously)
3+
4+
SELECT
5+
SUM([t3].[PersonID])
6+
FROM
7+
(
8+
SELECT
9+
[t1].[PersonID]
10+
FROM
11+
[Person] [t1]
12+
UNION ALL
13+
SELECT
14+
[t2].[ParentID] as [PersonID]
15+
FROM
16+
[Parent] [t2]
17+
) [t3]
18+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
BeforeExecute
2+
-- Access.Ace.Odbc AccessODBC (asynchronously)
3+
4+
SELECT
5+
COUNT(*)
6+
FROM
7+
(
8+
SELECT
9+
[t1].[PersonID]
10+
FROM
11+
[Person] [t1]
12+
UNION
13+
SELECT
14+
[t2].[ParentID] as [PersonID]
15+
FROM
16+
[Parent] [t2]
17+
) [t3]
18+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
BeforeExecute
2+
-- Access.Ace.Odbc AccessODBC (asynchronously)
3+
4+
SELECT TOP 1
5+
1
6+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
BeforeExecute
2+
-- Access.Ace.Odbc AccessODBC (asynchronously)
3+
4+
SELECT TOP 1
5+
1
6+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
BeforeExecute
2+
-- Access.Ace.Odbc AccessODBC (asynchronously)
3+
4+
SELECT TOP 1
5+
1
6+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
BeforeExecute
2+
-- Access.Ace.Odbc AccessODBC (asynchronously)
3+
4+
SELECT TOP 1
5+
1
6+
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
BeforeExecute
22
-- Access.Ace.Odbc AccessODBC (asynchronously)
3-
DECLARE @p Int -- Int32
4-
SET @p = 5
53

64
SELECT
7-
CVar(?)
5+
5
86

Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
BeforeExecute
22
-- Access.Ace.Odbc AccessODBC (asynchronously)
3-
DECLARE @p Int -- Int32
4-
SET @p = 2
53

64
SELECT
7-
Mid('123', 2, ?)
5+
Mid('123', 2, 2)
86

0 commit comments

Comments
 (0)