306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
|
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
|
-
+
|
/*avoids a potential lifetime issue*/;
}
checkin = cson_value_get_object(checkinV);
cson_object_set_s(checkin, tagKey, json_tags_for_rid(rid,0));
cson_array_append( checkin_arr, checkinV );
}
#else
json_stmt_to_array_of_obj( &q, cson_array_value(checkin_arr) );
json_stmt_to_array_of_obj( &q, checkin_arr );
#endif
db_finalize(&q);
return payV;
}
/*
** Impl of /json/artifact. This basically just determines the type of
|