10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-23 03:07:44 +02:00

Apply new method name in code

This commit is contained in:
Mickaël Véril 2020-09-09 18:23:39 +02:00
parent 2186f849a5
commit 1a9198082b

View File

@ -439,9 +439,9 @@ draft: false
} else if (!d1.method.isTBE && d2.method.isTBE) {
return 1
} else if (d1.method.isTBE && d2.method.isTBE) {
if (d1.method.name === "TBE(FC)" && d2.method.name === "TBE") {
if (d1.method.name === "TBE" && d2.method.name === "TBE(Full)") {
return -1
} else if (d1.method.name === "TBE" && d2.method.name === "TBE(FC)") {
} else if (d1.method.name === "TBE(Full)" && d2.method.name === "TBE") {
return 1
}
else {