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