|
7 | 7 | # the Business Source License, use of this software will be governed |
8 | 8 | # by the Apache License, Version 2.0. |
9 | 9 | from materialize.scalability.operation.operations.operations import ( |
10 | | - InsertDefaultValues, |
11 | | - SelectCount, |
12 | | - SelectCountInMv, |
13 | | - SelectLimit, |
14 | | - SelectOne, |
| 10 | + #InsertDefaultValues, |
| 11 | + #SelectCount, |
| 12 | + #SelectCountInMv, |
| 13 | + #SelectLimit, |
| 14 | + #SelectOne, |
15 | 15 | SelectStar, |
16 | | - SelectUnionAll, |
17 | | - Update, |
| 16 | + #SelectUnionAll, |
| 17 | + #Update, |
18 | 18 | ) |
19 | 19 | from materialize.scalability.operation.scalability_operation import Operation |
20 | 20 | from materialize.scalability.workload.workload_markers import DmlDqlWorkload |
21 | 21 |
|
22 | 22 |
|
23 | | -class InsertWorkload(DmlDqlWorkload): |
24 | | - def operations(self) -> list["Operation"]: |
25 | | - return [InsertDefaultValues()] |
| 23 | +# class InsertWorkload(DmlDqlWorkload): |
| 24 | +# def operations(self) -> list["Operation"]: |
| 25 | +# return [InsertDefaultValues()] |
26 | 26 |
|
27 | 27 |
|
28 | | -class SelectOneWorkload(DmlDqlWorkload): |
29 | | - def operations(self) -> list["Operation"]: |
30 | | - return [SelectOne()] |
| 28 | +# class SelectOneWorkload(DmlDqlWorkload): |
| 29 | +# def operations(self) -> list["Operation"]: |
| 30 | +# return [SelectOne()] |
31 | 31 |
|
32 | 32 |
|
33 | 33 | class SelectStarWorkload(DmlDqlWorkload): |
34 | 34 | def operations(self) -> list["Operation"]: |
35 | 35 | return [SelectStar()] |
36 | 36 |
|
37 | 37 |
|
38 | | -class SelectLimitWorkload(DmlDqlWorkload): |
39 | | - def operations(self) -> list["Operation"]: |
40 | | - return [SelectLimit()] |
| 38 | +# class SelectLimitWorkload(DmlDqlWorkload): |
| 39 | +# def operations(self) -> list["Operation"]: |
| 40 | +# return [SelectLimit()] |
41 | 41 |
|
42 | 42 |
|
43 | | -class SelectCountWorkload(DmlDqlWorkload): |
44 | | - def operations(self) -> list["Operation"]: |
45 | | - return [SelectCount()] |
| 43 | +# class SelectCountWorkload(DmlDqlWorkload): |
| 44 | +# def operations(self) -> list["Operation"]: |
| 45 | +# return [SelectCount()] |
46 | 46 |
|
47 | 47 |
|
48 | | -class SelectUnionAllWorkload(DmlDqlWorkload): |
49 | | - def operations(self) -> list["Operation"]: |
50 | | - return [SelectUnionAll()] |
| 48 | +# class SelectUnionAllWorkload(DmlDqlWorkload): |
| 49 | +# def operations(self) -> list["Operation"]: |
| 50 | +# return [SelectUnionAll()] |
51 | 51 |
|
52 | 52 |
|
53 | | -class InsertAndSelectCountInMvWorkload(DmlDqlWorkload): |
54 | | - def operations(self) -> list["Operation"]: |
55 | | - return [InsertDefaultValues(), SelectCountInMv()] |
| 53 | +# class InsertAndSelectCountInMvWorkload(DmlDqlWorkload): |
| 54 | +# def operations(self) -> list["Operation"]: |
| 55 | +# return [InsertDefaultValues(), SelectCountInMv()] |
56 | 56 |
|
57 | 57 |
|
58 | | -class InsertAndSelectLimitWorkload(DmlDqlWorkload): |
59 | | - def operations(self) -> list["Operation"]: |
60 | | - return [InsertDefaultValues(), SelectLimit()] |
| 58 | +# class InsertAndSelectLimitWorkload(DmlDqlWorkload): |
| 59 | +# def operations(self) -> list["Operation"]: |
| 60 | +# return [InsertDefaultValues(), SelectLimit()] |
61 | 61 |
|
62 | 62 |
|
63 | | -class UpdateWorkload(DmlDqlWorkload): |
64 | | - def operations(self) -> list["Operation"]: |
65 | | - return [Update()] |
| 63 | +# class UpdateWorkload(DmlDqlWorkload): |
| 64 | +# def operations(self) -> list["Operation"]: |
| 65 | +# return [Update()] |
0 commit comments