mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-20 13:36:02 +00:00
empty value testing
This commit is contained in:
@@ -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) {
|
if (filterBehaviour.supportNumberLikeComparison) {
|
||||||
res.push(
|
res.push(
|
||||||
|
{ divider: true },
|
||||||
|
|
||||||
{ onClick: () => openFilterWindow('>'), text: 'Greater Than...' },
|
{ onClick: () => openFilterWindow('>'), text: 'Greater Than...' },
|
||||||
{ onClick: () => openFilterWindow('>='), text: 'Greater Than Or Equal To...' },
|
{ onClick: () => openFilterWindow('>='), text: 'Greater Than Or Equal To...' },
|
||||||
{ onClick: () => openFilterWindow('<'), text: 'Less Than...' },
|
{ onClick: () => openFilterWindow('<'), text: 'Less Than...' },
|
||||||
|
|||||||
Reference in New Issue
Block a user