mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 20:26:23 +00:00
fix
This commit is contained in:
parent
ef33ebe1eb
commit
e84b76e4d1
@ -28,6 +28,7 @@ export function evaluateCondition(condition: Condition, values) {
|
||||
case '=':
|
||||
return left == right;
|
||||
case '!=':
|
||||
case '<>':
|
||||
return left != right;
|
||||
case '<=':
|
||||
return left <= right;
|
||||
|
@ -58,7 +58,7 @@ export interface UnaryCondition {
|
||||
|
||||
export interface BinaryCondition {
|
||||
conditionType: 'binary';
|
||||
operator: '=' | '!=' | '<' | '>' | '>=' | '<=';
|
||||
operator: '=' | '!=' | '<>' | '<' | '>' | '>=' | '<=';
|
||||
left: Expression;
|
||||
right: Expression;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user