• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/db-4.8.30/java/src/com/sleepycat/persist/impl/

Lines Matching refs:fields

91          * Validate secondary key metadata and move secondary key fields from
125 ("NULLIFY may not be used with primitive fields: " +
133 /* Sort each group of fields by name. */
312 /* Initialize all fields. */
540 * sure to assign the fields only after the values are fully populated.
542 FieldInfo[] fields = rawInputFields;
545 if (fields == null || levels == null || depth == 0) {
548 * The volatile fields are not yet set. Prepare to process the
570 /* Populate levels and fields in parallel. */
572 fields = new FieldInfo[nFields];
585 fields[index] = format.priKeyField;
594 * Secondary key fields are read/written next, from the highest
601 fields[index] = field;
607 * Other fields are read/written last, from the highest base class
614 fields[index] = field;
619 /* We're finished -- update the volatile fields for next time. */
620 assert index == fields.length;
621 rawInputFields = fields;
627 * Create an objects array that is parallel to the fields and levels
649 RawObject[] objects = new RawObject[fields.length];
654 /* Create the persistent object and convert all RawObject fields. */
656 (catalog, rawAccess, converted, fields, objects);
1003 "persistent fields must be deleted with a " +
1024 * (no persistent fields) from being read via the Accessor.
1045 ("Changes to the fields or superclass were detected", this,
1232 * Creates a FieldReader for secondary key fields and non-key fields if
1234 * superclass format fields.
1256 /* Evolve secondary key fields. */
1269 /* Evolve non-key fields. */
1293 * Returns a FieldReader that reads no fields.
1305 * Evolves a list of fields, either secondary key or non-key fields, for a
1398 /* A SkipFieldReader can read multiple sequential fields. */
1475 "fields: " + oldName);
1580 * fields as if no evolution is needed. A PlainFieldReader can
1581 * read multiple sequential fields.
1595 * If there are new fields, then the old fields must be read using a
1597 * directly will read fields in the wrong order and will read fields
1625 * more fields in the old format data, and may call the new format Accessor
1664 * Reads a continguous block of fields that have the same format in the old
1716 * Skips a continguous block of fields that exist in the old format but not
1726 SkipFieldReader(int startField, List<FieldInfo> fields) {
1727 endField = startField + fields.size() - 1;
1728 fieldFormats = new ArrayList<Format>(fields.size());
1729 for (FieldInfo field : fields) {
1799 * old and new fields have the same index. [#15797]
1903 * fields.
1945 * called to evolve the secondary key and non-key lists of fields.
2046 /* Read old format fields from the top-most class downward. */
2049 /* Read secondary key fields with the adjusted superclass level. */
2061 /* Read non-key fields with the adjusted superclass level. */