File tree 3 files changed +26
-0
lines changed
data-providers/jdbc-data-provider/src/test/java/datart/data/provider/sql
3 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 5
5
6
6
/static
7
7
8
+ /server /src /main /resources /javascript /**
9
+ ** /target /**
10
+
8
11
* .iml
9
12
* .zip
Original file line number Diff line number Diff line change 36
36
import org .apache .calcite .sql .fun .SqlStdOperatorTable ;
37
37
import org .apache .calcite .sql .parser .SqlParseException ;
38
38
import org .apache .calcite .sql .parser .SqlParserPos ;
39
+ import org .junit .jupiter .api .Disabled ;
39
40
import org .junit .jupiter .api .Test ;
40
41
import org .springframework .boot .test .context .SpringBootTest ;
41
42
@@ -54,6 +55,7 @@ public void testNormalSqlTest() throws SqlParseException {
54
55
}
55
56
56
57
@ Test
58
+ @ Disabled
57
59
public void testSqlWithExecParam () throws SqlParseException {
58
60
validateTestSql (ExecParamSqlExamples .sqlList , false );
59
61
log .info ("SqlWithExecParamSqlScripts validate passed" );
Original file line number Diff line number Diff line change 234
234
</configuration >
235
235
</plugin >
236
236
237
+ <plugin >
238
+ <groupId >com.github.eirslett</groupId >
239
+ <artifactId >frontend-maven-plugin</artifactId >
240
+ <version >1.6</version >
241
+ <configuration >
242
+ <workingDirectory >${project.parent.basedir} /frontend</workingDirectory >
243
+ </configuration >
244
+ <executions >
245
+ <execution >
246
+ <phase >initialize</phase >
247
+ <id >install node and npm</id >
248
+ <goals >
249
+ <goal >install-node-and-npm</goal >
250
+ </goals >
251
+ <configuration >
252
+ <nodeVersion >v14.2.0</nodeVersion >
253
+ <npmVersion >6.14.15</npmVersion >
254
+ </configuration >
255
+ </execution >
256
+ </executions >
257
+ </plugin >
237
258
<plugin >
238
259
<groupId >org.codehaus.mojo</groupId >
239
260
<artifactId >exec-maven-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments