Skip to content

Commit

Permalink
Update src/substrait/textplan/converter/ReferenceNormalizer.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: Benjamin Kietzman <bengilgit@gmail.com>
  • Loading branch information
EpsilonPrime and bkietz committed Jun 26, 2023
1 parent 3de54ba commit 8cb481f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/substrait/textplan/converter/ReferenceNormalizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ bool compareExtensionFunctions(
// extension.
not decl.has_extension_function(),
// Next sort by space.
decl.extension_function().extension_uri_reference(),
std::string_view{decl.extension_function().extension_uri_reference()},
// Finally sort by name within a space.
decl.extension_function().name());
std::string_view{decl.extension_function().name()});
};

// Now let the default tuple compare do the rest of the work.
Expand Down

0 comments on commit 8cb481f

Please sign in to comment.