Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
ddf5b108
Unverified
Commit
ddf5b108
authored
1 year ago
by
metabase-bot[bot]
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix conflicts (#40307)
parent
c0d07a72
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
frontend/src/metabase-lib/Dimension.ts
+147
-128
147 additions, 128 deletions
frontend/src/metabase-lib/Dimension.ts
with
147 additions
and
128 deletions
frontend/src/metabase-lib/Dimension.ts
+
147
−
128
View file @
ddf5b108
...
...
@@ -18,7 +18,7 @@ import type {
Query
,
}
from
"
metabase-lib/metadata/Metadata
"
;
import
type
NativeQuery
from
"
metabase-lib/queries/NativeQuery
"
;
import
type
StructuredQuery
from
"
metabase-lib/queries/StructuredQuery
"
;
import
StructuredQuery
from
"
metabase-lib/queries/StructuredQuery
"
;
import
type
Aggregation
from
"
metabase-lib/queries/structured/Aggregation
"
;
import
{
normalize
}
from
"
metabase-lib/queries/utils/normalize
"
;
import
{
DATETIME_UNITS
}
from
"
metabase-lib/queries/utils/query-time
"
;
...
...
@@ -813,33 +813,38 @@ export class FieldDimension extends Dimension {
}
field
():
Field
{
// If a Field is cached on the FieldDimension instance, we can shortwire this method and
// return the cached Field.
const
locallyCachedField
=
this
.
_getTrustedFieldCachedOnInstance
();
if
(
locallyCachedField
)
{
return
locallyCachedField
;
}
try
{
// If a Field is cached on the FieldDimension instance, we can shortwire this method and
// return the cached Field.
const
locallyCachedField
=
this
.
_getTrustedFieldCachedOnInstance
();
if
(
locallyCachedField
)
{
return
locallyCachedField
;
}
// Prioritize pulling a `field` from the Dimenion's associated query (if one exists)
// because it might have locally overriding metadata on it.
const
fieldFromQuery
=
this
.
_findMatchingQueryField
();
if
(
fieldFromQuery
)
{
return
fieldFromQuery
;
}
// Prioritize pulling a `field` from the Dimenion's associated query (if one exists)
// because it might have locally overriding metadata on it.
const
fieldFromQuery
=
this
.
_findMatchingQueryField
();
if
(
fieldFromQuery
)
{
return
fieldFromQuery
;
}
const
maybeTableId
=
this
.
_query
?.
table
()?.
id
;
const
fieldFromGlobalState
=
this
.
_metadata
?.
field
(
this
.
fieldIdOrName
(),
maybeTableId
)
||
this
.
_metadata
?.
field
(
this
.
fieldIdOrName
());
if
(
fieldFromGlobalState
)
{
return
fieldFromGlobalState
;
}
const
maybeTableId
=
this
.
_query
?.
table
()?.
id
;
const
fieldFromGlobalState
=
this
.
_metadata
?.
field
(
this
.
fieldIdOrName
(),
maybeTableId
)
||
this
.
_metadata
?.
field
(
this
.
fieldIdOrName
());
if
(
fieldFromGlobalState
)
{
return
fieldFromGlobalState
;
}
// Hitting this return statement means that there is a bug.
// This primarily serves as a way to guarantee that this function returns a Field to avoid errors in dependent code.
// Despite being unable to find a field, we _might_ still have enough data to know a few things about it.
// For example, if we have an mbql field reference, it might contain a `base-type`
return
this
.
_createFallbackField
();
// Hitting this return statement means that there is a bug.
// This primarily serves as a way to guarantee that this function returns a Field to avoid errors in dependent code.
// Despite being unable to find a field, we _might_ still have enough data to know a few things about it.
// For example, if we have an mbql field reference, it might contain a `base-type`
return
this
.
_createFallbackField
();
}
catch
(
e
)
{
console
.
warn
(
"
FieldDimension.field()
"
,
this
.
mbql
(),
e
);
return
null
;
}
}
getMLv1CompatibleDimension
()
{
...
...
@@ -1206,95 +1211,100 @@ export class ExpressionDimension extends Dimension {
}
field
()
{
const
query
=
this
.
_query
;
const
table
=
query
?
query
.
table
()
:
null
;
// fallback
const
baseTypeOption
=
this
.
getOption
(
"
base-type
"
);
let
type
=
baseTypeOption
||
MONOTYPE
.
Number
;
let
semantic_type
=
null
;
if
(
!
baseTypeOption
)
{
if
(
query
)
{
const
datasetQuery
=
query
.
legacyQuery
({
useStructuredQuery
:
true
});
const
expressions
=
datasetQuery
?.
expressions
??
{};
const
expr
=
expressions
[
this
.
name
()];
const
field
=
mbql
=>
{
const
dimension
=
Dimension
.
parseMBQL
(
mbql
,
this
.
_metadata
,
this
.
_query
,
);
return
dimension
?.
field
();
};
type
=
infer
(
expr
,
mbql
=>
field
(
mbql
)?.
base_type
)
??
type
;
semantic_type
=
infer
(
expr
,
mbql
=>
field
(
mbql
)?.
semantic_type
)
??
semantic_type
;
}
else
{
type
=
infer
(
this
.
_expressionName
);
try
{
const
query
=
this
.
_query
;
const
table
=
query
?
query
.
table
()
:
null
;
// fallback
const
baseTypeOption
=
this
.
getOption
(
"
base-type
"
);
let
type
=
baseTypeOption
||
MONOTYPE
.
Number
;
let
semantic_type
=
null
;
if
(
!
baseTypeOption
)
{
if
(
query
instanceof
StructuredQuery
)
{
const
datasetQuery
=
query
.
legacyQuery
({
useStructuredQuery
:
true
});
const
expressions
=
datasetQuery
?.
expressions
??
{};
const
expr
=
expressions
[
this
.
name
()];
const
field
=
mbql
=>
{
const
dimension
=
Dimension
.
parseMBQL
(
mbql
,
this
.
_metadata
,
this
.
_query
,
);
return
dimension
?.
field
();
};
type
=
infer
(
expr
,
mbql
=>
field
(
mbql
)?.
base_type
)
??
type
;
semantic_type
=
infer
(
expr
,
mbql
=>
field
(
mbql
)?.
semantic_type
)
??
semantic_type
;
}
else
{
type
=
infer
(
this
.
_expressionName
);
}
}
}
let
base_type
=
type
;
if
(
!
type
.
startsWith
(
"
type/
"
))
{
switch
(
type
)
{
case
MONOTYPE
.
String
:
base_type
=
"
type/Text
"
;
break
;
case
MONOTYPE
.
Boolean
:
base_type
=
"
type/Boolean
"
;
break
;
case
MONOTYPE
.
DateTime
:
base_type
=
"
type/DateTime
"
;
break
;
let
base_type
=
type
;
if
(
!
type
.
startsWith
(
"
type/
"
))
{
switch
(
type
)
{
case
MONOTYPE
.
String
:
base_type
=
"
type/Text
"
;
break
;
case
MONOTYPE
.
Boolean
:
base_type
=
"
type/Boolean
"
;
break
;
case
MONOTYPE
.
DateTime
:
base_type
=
"
type/DateTime
"
;
break
;
// fallback
default
:
base_type
=
"
type/Float
"
;
break
;
}
semantic_type
=
base_type
;
}
// fallback
default
:
base_type
=
"
type/Float
"
;
break
;
// if a dimension has access to a question with result metadata,
// we try to find the field using the metadata directly,
// so that we don't have to try to infer field metadata from the expression
const
resultMetadata
=
query
?.
question
()?.
getResultMetadata
?.();
if
(
resultMetadata
)
{
const
fieldMetadata
=
_
.
findWhere
(
resultMetadata
,
{
name
:
this
.
name
(),
});
if
(
fieldMetadata
)
{
return
this
.
_createField
(
fieldMetadata
);
}
}
semantic_type
=
base_type
;
}
// if a dimension has access to a question with result metadata,
// we try to find the field using the metadata directly,
// so that we don't have to try to infer field metadata from the expression
const
resultMetadata
=
query
?.
question
()?.
getResultMetadata
?.();
if
(
resultMetadata
)
{
const
fieldMetadata
=
_
.
findWhere
(
resultMetadata
,
{
const
subsOptions
=
getOptions
(
semantic_type
?
semantic_type
:
base_type
);
const
dimension_options
=
subsOptions
&&
Array
.
isArray
(
subsOptions
)
?
subsOptions
.
map
(({
name
,
options
})
=>
{
return
{
name
,
type
:
base_type
,
mbql
:
[
"
expression
"
,
null
,
options
],
};
})
:
null
;
return
new
Field
({
id
:
this
.
mbql
(),
name
:
this
.
name
(),
display_name
:
this
.
displayName
(),
base_type
,
semantic_type
,
query
,
table
,
dimension_options
,
});
if
(
fieldMetadata
)
{
return
this
.
_createField
(
fieldMetadata
);
}
}
catch
(
e
)
{
console
.
warn
(
"
ExpressionDimension.field()
"
,
this
.
mbql
(),
e
);
return
null
;
}
const
subsOptions
=
getOptions
(
semantic_type
?
semantic_type
:
base_type
);
const
dimension_options
=
subsOptions
&&
Array
.
isArray
(
subsOptions
)
?
subsOptions
.
map
(({
name
,
options
})
=>
{
return
{
name
,
type
:
base_type
,
mbql
:
[
"
expression
"
,
null
,
options
],
};
})
:
null
;
return
new
Field
({
id
:
this
.
mbql
(),
name
:
this
.
name
(),
display_name
:
this
.
displayName
(),
base_type
,
semantic_type
,
query
,
table
,
dimension_options
,
});
}
getMLv1CompatibleDimension
()
{
...
...
@@ -1453,26 +1463,31 @@ export class AggregationDimension extends Dimension {
}
field
()
{
const
aggregation
=
this
.
aggregation
();
try
{
const
aggregation
=
this
.
aggregation
();
if
(
!
aggregation
)
{
return
super
.
field
();
}
if
(
!
aggregation
)
{
return
super
.
field
();
}
const
dimension
=
aggregation
.
dimension
();
const
field
=
dimension
&&
dimension
.
field
();
const
{
semantic_type
}
=
field
||
{};
return
new
Field
({
name
:
aggregation
.
columnName
(),
display_name
:
aggregation
.
displayName
(),
base_type
:
aggregation
.
baseType
(),
// don't pass through `semantic_type` when aggregating these types
...(
!
UNAGGREGATED_SEMANTIC_TYPES
.
has
(
semantic_type
)
&&
{
semantic_type
,
}),
query
:
this
.
_query
,
metadata
:
this
.
_metadata
,
});
const
dimension
=
aggregation
.
dimension
();
const
field
=
dimension
&&
dimension
.
field
();
const
{
semantic_type
}
=
field
||
{};
return
new
Field
({
name
:
aggregation
.
columnName
(),
display_name
:
aggregation
.
displayName
(),
base_type
:
aggregation
.
baseType
(),
// don't pass through `semantic_type` when aggregating these types
...(
!
UNAGGREGATED_SEMANTIC_TYPES
.
has
(
semantic_type
)
&&
{
semantic_type
,
}),
query
:
this
.
_query
,
metadata
:
this
.
_metadata
,
});
}
catch
(
e
)
{
console
.
warn
(
"
AggregationDimension.field()
"
,
this
.
mbql
(),
e
);
return
null
;
}
}
getMLv1CompatibleDimension
()
{
...
...
@@ -1617,11 +1632,15 @@ export class TemplateTagDimension extends FieldDimension {
}
field
()
{
if
(
this
.
isValidDimensionType
())
{
return
this
.
dimension
().
field
();
try
{
if
(
this
.
isValidDimensionType
())
{
return
this
.
dimension
().
field
();
}
return
null
;
}
catch
(
e
)
{
console
.
warn
(
"
TemplateTagDimension.field()
"
,
this
.
mbql
(),
e
);
return
null
;
}
return
null
;
}
name
()
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment