Details
-
Bug
-
Resolution: Fixed
-
Major
-
6.0.2, 6.5.0
-
Untriaged
-
Unknown
-
CX Sprint 149, CX Sprint 150, CX Sprint 178
Description
While
set `import-private-functions` `true`;
|
array_count(tpcds_datagen("customer_address", 0.1))
|
works and returns
[
|
5000
|
]
|
neither
explain text set `import-private-functions` `true`;
|
array_count(tpcds_datagen("customer_address", 0.1))
|
(returning
[
|
{
|
"code": 24000,
|
"msg": "Syntax error: In line 1 >>explain set `import-private-functions` `true`;<< Encountered \"set\" at column 10. ",
|
"query_from_user": "explain text set `import-private-functions` `true`;\narray_count(tpcds_datagen(\"customer_address\", 0.1))"
|
}
|
]
|
) nor
set `import-private-functions` `true`;
|
explain text array_count(tpcds_datagen("customer_address", 0.1))
|
(returning
[
|
{
|
"code": 24001,
|
"msg": "Compilation error: function Default.tpcds_datagen@2 is not defined (in line 1, at column 22)",
|
"query_from_user": "set `import-private-functions` `true`;\nexplain text array_count(tpcds_datagen(\"customer_address\", 0.1))"
|
}
|
]
|
) can be used to get a textual plan for the request