Skip to content

Commit 547fd0f

Browse files
author
Azure Pipelines Bot
committed
[Linux / SAP HANA 2] baselines
1 parent c3bd10a commit 547fd0f

File tree

312 files changed

+3275
-539
lines changed

Some content is hidden

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

312 files changed

+3275
-539
lines changed

SapHana.Odbc.LinqService/Tests/Linq/AssociationTests/Tests.Linq.AssociationTests.Issue1096Test(SapHana.Odbc.LinqService).sql

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,21 @@
11
BeforeExecute
22
-- SapHana.Odbc SapHanaOdbc (asynchronously)
3+
DECLARE @Pk Int -- Int32
4+
SET @Pk = 1
35
DECLARE @Id Int -- Int32
46
SET @Id = 1
57
DECLARE @TargetName NVarChar(12) -- String
68
SET @TargetName = 'bda.Requests'
79

810
INSERT INTO "Issue1096Task"
911
(
12+
"Pk",
1013
"Id",
1114
"TargetName"
1215
)
1316
VALUES
1417
(
1518
?,
16-
?
17-
)
18-
19-
BeforeExecute
20-
-- SapHana.Odbc SapHanaOdbc (asynchronously)
21-
DECLARE @Id Int -- Int32
22-
SET @Id = 1
23-
DECLARE @TargetName NVarChar(12) -- String
24-
SET @TargetName = 'bda.Requests'
25-
26-
INSERT INTO "Issue1096Task"
27-
(
28-
"Id",
29-
"TargetName"
30-
)
31-
VALUES
32-
(
3319
?,
3420
?
3521
)
@@ -60,6 +46,7 @@ BeforeExecute
6046
-- SapHana.Odbc SapHanaOdbc (asynchronously)
6147

6248
SELECT DISTINCT
49+
"t"."Pk",
6350
"t"."Id",
6451
"t"."TargetName",
6552
"a_ActualStage"."Id",

SapHana.Odbc.LinqService/Tests/Linq/CommonTests/Tests.Linq.CommonTests.Issue191Test(SapHana.Odbc.LinqService).sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
-- SapHana.Odbc SapHanaOdbc (asynchronously)
33

44
SELECT
5+
"user_1"."Id",
56
"user_1"."FirstName",
67
"user_1"."Status"
78
FROM

SapHana.Odbc.LinqService/Tests/Linq/FSharpTests/Tests.Linq.FSharpTests.Issue1813Test2(SapHana.Odbc.LinqService).sql

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,10 @@ SELECT
6060
"d"."Id",
6161
"d"."Text"
6262
FROM
63-
(
64-
SELECT DISTINCT
65-
"Item1"."Id"
66-
FROM
67-
"Names" "Item1"
68-
) "m_1"
63+
"Names" "m_1"
6964
LEFT JOIN "Addresses" "d" ON "m_1"."Id" = "d"."Id"
65+
ORDER BY
66+
"m_1"."Id"
7067

7168
BeforeExecute
7269
-- SapHana.Odbc SapHanaOdbc (asynchronously)

SapHana.Odbc.LinqService/Tests/Linq/GroupByTests/Tests.Linq.GroupByTests.AverageInGroup(SapHana.Odbc.LinqService).sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ BeforeExecute
3333
-- SapHana.Odbc SapHanaOdbc (asynchronously)
3434

3535
SELECT
36+
"t1"."Id",
3637
"t1"."GroupId",
3738
"t1"."DataValue"
3839
FROM

SapHana.Odbc.LinqService/Tests/Linq/GroupByTests/Tests.Linq.GroupByTests.CountInGroup(SapHana.Odbc.LinqService).sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ BeforeExecute
9494
-- SapHana.Odbc SapHanaOdbc (asynchronously)
9595

9696
SELECT
97+
"t1"."Id",
9798
"t1"."GroupId",
9899
"t1"."DataValue"
99100
FROM

SapHana.Odbc.LinqService/Tests/Linq/GroupByTests/Tests.Linq.GroupByTests.MaxInGroup(SapHana.Odbc.LinqService).sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ BeforeExecute
3131
-- SapHana.Odbc SapHanaOdbc (asynchronously)
3232

3333
SELECT
34+
"t1"."Id",
3435
"t1"."GroupId",
3536
"t1"."DataValue"
3637
FROM

SapHana.Odbc.LinqService/Tests/Linq/GroupByTests/Tests.Linq.GroupByTests.MinInGroup(SapHana.Odbc.LinqService).sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ BeforeExecute
3131
-- SapHana.Odbc SapHanaOdbc (asynchronously)
3232

3333
SELECT
34+
"t1"."Id",
3435
"t1"."GroupId",
3536
"t1"."DataValue"
3637
FROM

SapHana.Odbc.LinqService/Tests/Linq/GroupByTests/Tests.Linq.GroupByTests.SumInGroup(SapHana.Odbc.LinqService).sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ BeforeExecute
3131
-- SapHana.Odbc SapHanaOdbc (asynchronously)
3232

3333
SELECT
34+
"t1"."Id",
3435
"t1"."GroupId",
3536
"t1"."DataValue"
3637
FROM

SapHana.Odbc.LinqService/Tests/Linq/InSubqueryTests/Tests.Linq.InSubqueryTests.NotNull_In_NotNull_Test(SapHana.Odbc.LinqService,False,False).sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
-- SapHana.Odbc SapHanaOdbc (asynchronously)
33

44
SELECT
5+
"t"."PK",
56
"t"."ID"
67
FROM
78
"test_in_1" "t"
@@ -17,6 +18,7 @@ BeforeExecute
1718
-- SapHana.Odbc SapHanaOdbc (asynchronously)
1819

1920
SELECT
21+
"t1"."PK",
2022
"t1"."ID"
2123
FROM
2224
"test_in_1" "t1"
@@ -25,6 +27,7 @@ BeforeExecute
2527
-- SapHana.Odbc SapHanaOdbc (asynchronously)
2628

2729
SELECT
30+
"t1"."PK",
2831
"t1"."ID"
2932
FROM
3033
"test_in_2" "t1"

SapHana.Odbc.LinqService/Tests/Linq/InSubqueryTests/Tests.Linq.InSubqueryTests.NotNull_In_NotNull_Test(SapHana.Odbc.LinqService,False,True).sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
-- SapHana.Odbc SapHanaOdbc (asynchronously)
33

44
SELECT
5+
"t"."PK",
56
"t"."ID"
67
FROM
78
"test_in_1" "t"
@@ -17,6 +18,7 @@ BeforeExecute
1718
-- SapHana.Odbc SapHanaOdbc (asynchronously)
1819

1920
SELECT
21+
"t1"."PK",
2022
"t1"."ID"
2123
FROM
2224
"test_in_1" "t1"
@@ -25,6 +27,7 @@ BeforeExecute
2527
-- SapHana.Odbc SapHanaOdbc (asynchronously)
2628

2729
SELECT
30+
"t1"."PK",
2831
"t1"."ID"
2932
FROM
3033
"test_in_2" "t1"

0 commit comments

Comments
 (0)