/usr/lib/ocaml/galax/physical_table.mli is in libgalax-ocaml-dev 1.1-12.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | (***********************************************************************)
(* *)
(* GALAX *)
(* XQuery Engine *)
(* *)
(* Copyright 2001-2007. *)
(* Distributed only by permission. *)
(* *)
(***********************************************************************)
(* $Id: physical_table.mli,v 1.7 2007/02/01 22:08:51 simeon Exp $ *)
(* Module: Physical_table
Description:
This modules defines physical representations for tuples and
tables.
*)
open Physical_value
(**********)
(* Tuples *)
(**********)
(* Tuples passed functionally are always empty *)
(* Note:
Tuples here are actual always empty. This type is only used on
the interface for cursor operations.
*)
(**********)
(* Tables *)
(**********)
val empty_tuple : tuple_unit
val table_of_singleton : tuple_unit -> table_unit
val table_is_empty : table_unit -> bool
val table_empty : unit -> table_unit
|