@@ -28,12 +28,14 @@ class ThrottledCommonDatabase extends CommonDatabase {
28
28
DatabaseConfig get config => _db.config;
29
29
30
30
@override
31
- void createAggregateFunction <V >(
32
- {required String functionName,
33
- required AggregateFunction <V > function,
34
- AllowedArgumentCount argumentCount = const AllowedArgumentCount .any (),
35
- bool deterministic = false ,
36
- bool directOnly = true }) {
31
+ void createAggregateFunction <V >({
32
+ required String functionName,
33
+ required AggregateFunction <V > function,
34
+ AllowedArgumentCount argumentCount = const AllowedArgumentCount .any (),
35
+ bool deterministic = false ,
36
+ bool directOnly = true ,
37
+ bool subtype = false ,
38
+ }) {
37
39
_db.createAggregateFunction (functionName: functionName, function: function);
38
40
}
39
41
@@ -44,12 +46,14 @@ class ThrottledCommonDatabase extends CommonDatabase {
44
46
}
45
47
46
48
@override
47
- void createFunction (
48
- {required String functionName,
49
- required ScalarFunction function,
50
- AllowedArgumentCount argumentCount = const AllowedArgumentCount .any (),
51
- bool deterministic = false ,
52
- bool directOnly = true }) {
49
+ void createFunction ({
50
+ required String functionName,
51
+ required ScalarFunction function,
52
+ AllowedArgumentCount argumentCount = const AllowedArgumentCount .any (),
53
+ bool deterministic = false ,
54
+ bool directOnly = true ,
55
+ bool subtype = false ,
56
+ }) {
53
57
_db.createFunction (functionName: functionName, function: function);
54
58
}
55
59
0 commit comments