Changeset 7016 for trunk/psModules/src/astrom/pmConceptsRead.c
- Timestamp:
- Apr 30, 2006, 3:08:45 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/astrom/pmConceptsRead.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/astrom/pmConceptsRead.c
r6983 r7016 216 216 if (mdok && strlen(keywords) > 0) { 217 217 // In case there are multiple headers 218 psList *keys = psStringSplit(keywords, " ,;" ); // List of keywords218 psList *keys = psStringSplit(keywords, " ,;", true); // List of keywords 219 219 if (keys->n == 1) { 220 220 // Only one key --- proceed as usual … … 285 285 // Now, need to get the "given"s 286 286 if (strlen(givenCols) > 0 || strlen(givenPS) > 0) { 287 psList *cols = psStringSplit(givenCols, ",;" ); // List of column names288 psList *values = psStringSplit(givenPS, ",;" ); // List of value names for the columns287 psList *cols = psStringSplit(givenCols, ",;", true); // List of column names 288 psList *values = psStringSplit(givenPS, ",;", true); // List of value names for the columns 289 289 psMetadata *selection = psMetadataAlloc(); // The stuff to select in the DB 290 290 if (cols->n != values->n) { … … 516 516 // Now, need to get the "given"s 517 517 if (strlen(givenCols) || strlen(givenPS)) { 518 psList *cols = psStringSplit(givenCols, ",;" ); // List of column names519 psList *values = psStringSplit(givenPS, ",;" ); // List of value names for the columns518 psList *cols = psStringSplit(givenCols, ",;", true); // List of column names 519 psList *values = psStringSplit(givenPS, ",;", true); // List of value names for the columns 520 520 psMetadata *selection = psMetadataAlloc(); // The stuff to select in the DB 521 521 if (cols->n != values->n) {
Note:
See TracChangeset
for help on using the changeset viewer.
