@@ -85,24 +85,24 @@ public Parser<Long> createParser() {
85
85
}
86
86
87
87
@ Override
88
- public ObjectParser createObjectParser (JSONObject request , String parentPath , SQLConfig arrayConfig
88
+ public ObjectParser < Long > createObjectParser (JSONObject request , String parentPath , SQLConfig < Long > arrayConfig
89
89
, boolean isSubquery , boolean isTable , boolean isArrayMainTable ) throws Exception {
90
90
return new DemoObjectParser (getSession (), request , parentPath , arrayConfig
91
91
, isSubquery , isTable , isArrayMainTable ).setMethod (getMethod ()).setParser (this );
92
92
}
93
93
94
94
@ Override
95
- public FunctionParser createFunctionParser () {
95
+ public FunctionParser < Long > createFunctionParser () {
96
96
return new DemoFunctionParser ();
97
97
}
98
98
99
99
@ Override
100
- public SQLConfig createSQLConfig () {
100
+ public SQLConfig < Long > createSQLConfig () {
101
101
return new DemoSQLConfig ();
102
102
}
103
103
104
104
@ Override
105
- public SQLExecutor createSQLExecutor () {
105
+ public SQLExecutor < Long > createSQLExecutor () {
106
106
return new DemoSQLExecutor ();
107
107
}
108
108
@@ -111,11 +111,13 @@ public Verifier<Long> createVerifier() {
111
111
return new DemoVerifier ();
112
112
}
113
113
114
- private FunctionParser functionParser ;
115
- public FunctionParser getFunctionParser () {
114
+ private FunctionParser < Long > functionParser ;
115
+ public FunctionParser < Long > getFunctionParser () {
116
116
return functionParser ;
117
117
}
118
- public Object onFunctionParse (String key , String function , String parentPath , String currentName , JSONObject currentObject , boolean containRaw ) throws Exception {
118
+
119
+ public Object onFunctionParse (String key , String function , String parentPath , String currentName
120
+ , JSONObject currentObject , boolean containRaw ) throws Exception {
119
121
if (functionParser == null ) {
120
122
functionParser = createFunctionParser ();
121
123
functionParser .setMethod (getMethod ());
0 commit comments