mirror of
https://github.com/apache/superset.git
synced 2026-05-12 19:35:17 +00:00
fix: boolean type into SQL 'in' operator (#16107)
* fix: boolean type into SQL 'in' operator
* fix ut
* fix ut again
* update url
* remove blank line
(cherry picked from commit bb1d8fe4ef)
This commit is contained in:
committed by
Ville Brofeldt
parent
8146a5cad3
commit
33b56bb31d
@@ -112,7 +112,7 @@ const ColumnButtonWrapper = styled.div`
|
||||
const checkboxGenerator = (d, onChange) => (
|
||||
<CheckboxControl value={d} onChange={onChange} />
|
||||
);
|
||||
const DATA_TYPES = ['STRING', 'NUMERIC', 'DATETIME'];
|
||||
const DATA_TYPES = ['STRING', 'NUMERIC', 'DATETIME', 'BOOLEAN'];
|
||||
|
||||
const DATASOURCE_TYPES_ARR = [
|
||||
{ key: 'physical', label: t('Physical (table or view)') },
|
||||
|
||||
Reference in New Issue
Block a user