Changeset: c2f0edcc5edd for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/c2f0edcc5edd
Modified Files:
sql/backends/monet5/vaults/csv/csv.c
Branch: label
Log Message:
small fix on getting the attribute names of the csv header line
diffs (12 lines):
diff --git a/sql/backends/monet5/vaults/csv/csv.c
b/sql/backends/monet5/vaults/csv/csv.c
--- a/sql/backends/monet5/vaults/csv/csv.c
+++ b/sql/backends/monet5/vaults/csv/csv.c
@@ -44,7 +44,7 @@ next_delim(const char *s, const char *e,
else if (!inquote && *s == delim)
return s;
}
- if (s < e)
+ if (s <= e)
return s;
return NULL;
}
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]