Skip to content

Commit d916860

Browse files
authored
Merge pull request #4 from mrDrivingDuck/master
Fixed bugs
2 parents f3c085f + 44b96ce commit d916860

File tree

2 files changed

+63
-1
lines changed

2 files changed

+63
-1
lines changed

R/RDolphinDB.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ setMethod(
209209
signature(conn = "RDolphinDB"),
210210
function(conn) {
211211
DisConnect()
212-
object@connected <- FALSE
212+
conn@connected <- FALSE
213213
}
214214
)
215215

test/run_test.sh

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
2+
echo -------- TestAnyVector.R --------
3+
Rscript TestAnyVector.R
4+
echo -------- TestAnyVector.R --------
5+
6+
echo
7+
8+
echo -------- TestDataFrame.R --------
9+
Rscript TestDataFrame.R
10+
echo -------- TestDataFrame.R --------
11+
12+
echo
13+
14+
echo -------- TestDateAndTime.R --------
15+
Rscript TestDateAndTime.R
16+
echo -------- TestDateAndTime.R --------
17+
18+
echo
19+
20+
echo -------- TestLogIn.R --------
21+
Rscript TestLogIn.R
22+
echo -------- TestLogIn.R --------
23+
24+
echo
25+
26+
echo -------- TestMatrixs.R --------
27+
Rscript TestMatrixs.R
28+
echo -------- TestMatrixs.R --------
29+
30+
echo
31+
32+
echo -------- TestPair.R --------
33+
Rscript TestPair.R
34+
echo -------- TesetPair.R --------
35+
36+
echo
37+
38+
echo -------- TestScalars.R --------
39+
Rscript TestScalars.R
40+
echo -------- TestScalars.R --------
41+
42+
echo
43+
44+
echo -------- TestSet.R --------
45+
Rscript TestSet.R
46+
echo -------- TestSet.R --------
47+
48+
echo
49+
50+
echo -------- TestUpload.R --------
51+
Rscript TestUpload.R
52+
echo -------- TestUpload.R --------
53+
54+
echo
55+
56+
echo -------- TestVectors.R --------
57+
Rscript TestVectors.R
58+
echo -------- TestVectors.R --------
59+
60+
echo
61+
62+
echo Completed.

0 commit comments

Comments
 (0)