Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add check con #163

Open
wants to merge 26 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
a919f46
modify socketTimeout to 120s
aressu1985 May 2, 2023
efa0f2c
Merge branch 'matrixorigin:main' into main
aressu1985 May 18, 2023
1c62798
add regular match
aressu1985 May 20, 2023
94e47f5
Merge branch 'matrixorigin:main' into main
aressu1985 May 31, 2023
3798e26
support rc + Pessimistic
aressu1985 May 31, 2023
148dfd5
Merge branch 'main' into main
aressu1985 May 31, 2023
a6e0270
Merge branch 'matrixorigin:main' into main
aressu1985 Jul 6, 2023
e111699
Merge branch 'matrixorigin:main' into main
aressu1985 Jul 27, 2023
881add9
Merge branch 'matrixorigin:main' into main
aressu1985 Sep 15, 2023
f339944
revert Fix pessimistic commit wait error
aressu1985 Sep 15, 2023
7558672
revert revert
aressu1985 Sep 15, 2023
e489c5b
Merge branch 'matrixorigin:main' into main
aressu1985 Sep 15, 2023
0773c55
Merge branch 'matrixorigin:main' into main
aressu1985 Sep 15, 2023
50c995d
Merge branch 'matrixorigin:main' into main
aressu1985 Sep 15, 2023
37b8380
Merge branch 'matrixorigin:main' into main
aressu1985 Oct 10, 2023
f0de5ac
Merge branch 'matrixorigin:main' into main
aressu1985 Oct 11, 2023
41a2934
Merge branch 'matrixorigin:main' into main
aressu1985 Oct 18, 2023
2a95912
Merge branch 'matrixorigin:main' into main
aressu1985 Nov 21, 2023
21e93ab
Merge branch 'matrixorigin:main' into main
aressu1985 Jan 16, 2024
fc59c88
Merge branch 'matrixorigin:main' into main
aressu1985 Jan 17, 2024
bc5908f
Merge branch 'matrixorigin:main' into main
aressu1985 Jan 29, 2024
75d53d7
Merge branch 'matrixorigin:main' into main
aressu1985 Feb 26, 2024
7442b7b
add mo_debug to builtindb items
aressu1985 Feb 26, 2024
61d7d21
Merge branch 'matrixorigin:main' into main
aressu1985 Mar 22, 2024
8e0ddd5
Merge branch 'main' of https://github.com/aressu1985/mo-tester
aressu1985 Mar 22, 2024
b213692
add a check condition when actual result and expected result are not …
aressu1985 Mar 22, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified lib/mo-tester-1.0-SNAPSHOT.jar
Binary file not shown.
6 changes: 5 additions & 1 deletion src/main/java/io/mo/result/RSCell.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,11 @@ public boolean equals(RSCell cell){
cell.type == Types.BIGINT ||
(cell.type == Types.VARCHAR && isNumeric(v1) &&isNumeric(v2))) {


if(!isNumeric(v1)){
LOG.error(String.format("value[%s] does not equal to value[%s]",v1,v2));
return false;
}

BigDecimal bd1 = BigDecimal.valueOf(Double.valueOf(v1)).stripTrailingZeros();
BigDecimal bd2 = BigDecimal.valueOf(Double.valueOf(v2)).stripTrailingZeros();
//System.out.println("bd1 = " + bd1);
Expand Down
Loading