mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 04:00:59 +00:00
empty value testing
This commit is contained in:
parent
32c7919885
commit
24408dd7c2
@ -93,8 +93,17 @@
|
||||
);
|
||||
}
|
||||
|
||||
if (filterBehaviour.supportEmpty) {
|
||||
res.push(
|
||||
{ onClick: () => setFilter('EMPTY, NULL'), text: 'Is Empty Or Null' },
|
||||
{ onClick: () => setFilter('NOT EMPTY NOT NULL'), text: 'Has Not Empty Value' }
|
||||
);
|
||||
}
|
||||
|
||||
if (filterBehaviour.supportNumberLikeComparison) {
|
||||
res.push(
|
||||
{ divider: true },
|
||||
|
||||
{ onClick: () => openFilterWindow('>'), text: 'Greater Than...' },
|
||||
{ onClick: () => openFilterWindow('>='), text: 'Greater Than Or Equal To...' },
|
||||
{ onClick: () => openFilterWindow('<'), text: 'Less Than...' },
|
||||
|
Loading…
Reference in New Issue
Block a user