We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c14123c commit 289bb91Copy full SHA for 289bb91
include/pgvector/pqxx.hpp
@@ -33,7 +33,7 @@ template <> struct string_traits<pgvector::Vector> {
33
34
std::vector<float> result;
35
if (text.size() > 2) {
36
- // TODO don't copy string
+ // TODO remove all copying
37
std::istringstream ss(std::string(text.substr(1, text.size() - 2)));
38
while (ss.good()) {
39
std::string substr;
@@ -70,7 +70,7 @@ template <> struct string_traits<pgvector::HalfVector> {
70
71
72
73
74
75
76
0 commit comments