Skip to content

Commit

Permalink
Only wrap the strings with string_view.
Browse files Browse the repository at this point in the history
  • Loading branch information
EpsilonPrime committed Jun 26, 2023
1 parent 8cb481f commit 9ca7847
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/substrait/textplan/converter/ReferenceNormalizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ bool compareExtensionFunctions(
// extension.
not decl.has_extension_function(),
// Next sort by space.
std::string_view{decl.extension_function().extension_uri_reference()},
decl.extension_function().extension_uri_reference(),
// Finally sort by name within a space.
std::string_view{decl.extension_function().name()});
};
Expand Down

0 comments on commit 9ca7847

Please sign in to comment.