Esempio n. 1
0
 public static void writeInsert(ByteSlot slot, Procedure proc, Procedure[] subprocs)
     throws IOException {
   writeEntry(slot, ProcedureWALEntry.Type.PROCEDURE_WAL_INSERT, proc, subprocs);
 }
Esempio n. 2
0
 public static void writeUpdate(ByteSlot slot, Procedure proc) throws IOException {
   writeEntry(slot, ProcedureWALEntry.Type.PROCEDURE_WAL_UPDATE, proc, null);
 }
Esempio n. 3
0
 public static void writeInsert(ByteSlot slot, Procedure proc) throws IOException {
   writeEntry(slot, ProcedureWALEntry.Type.PROCEDURE_WAL_INIT, proc, null);
 }