This commit is contained in:
@ -99,7 +99,7 @@ TEST_F(TableFunctionTest, vexplode_outer) {
|
||||
// explode_outer(Array<String>)
|
||||
{
|
||||
InputTypeSet input_types = {TypeIndex::Array, TypeIndex::String};
|
||||
Array vec = {std::string("abc"), std::string(""), std::string("def")};
|
||||
Array vec = {Field(std::string("abc")), Field(std::string("")), Field(std::string("def"))};
|
||||
InputDataSet input_set = {{Null()}, {Array()}, {vec}};
|
||||
|
||||
InputTypeSet output_types = {TypeIndex::String};
|
||||
@ -146,7 +146,7 @@ TEST_F(TableFunctionTest, vexplode) {
|
||||
// explode(Array<String>)
|
||||
{
|
||||
InputTypeSet input_types = {TypeIndex::Array, TypeIndex::String};
|
||||
Array vec = {std::string("abc"), std::string(""), std::string("def")};
|
||||
Array vec = {Field(std::string("abc")), Field(std::string("")), Field(std::string("def"))};
|
||||
InputDataSet input_set = {{Null()}, {Array()}, {vec}};
|
||||
|
||||
InputTypeSet output_types = {TypeIndex::String};
|
||||
|
||||
Reference in New Issue
Block a user