sql select join progress

This commit is contained in:
2024-02-02 19:30:16 +01:00
parent e8b0f0e802
commit aa221aa571
8 changed files with 131 additions and 68 deletions
+1
View File
@@ -88,6 +88,7 @@ public:
* @return The prepared string
*/
[[nodiscard]] std::string prepare_identifier(const column &col) const;
[[nodiscard]] std::string prepare_identifier_string(const std::string &col) const;
/**
* Prepare string literal
+2 -3
View File
@@ -15,10 +15,9 @@ namespace matador::utils {
*
* @param str The string to split.
* @param delim The delimiter character.
* @param values The result vector.
* @return The size of the vector.
* @return The the vector with split strings.
*/
size_t split(const std::string &str, char delim, std::vector<std::string> &values);
std::vector<std::string> split(const std::string &str, char delim);
/**
* Replaces all occurrences of string from in given string