Skip to content

Commit

Permalink
Merge branch 'master' into mysql8-redux
Browse files Browse the repository at this point in the history
  • Loading branch information
frank-emrich authored Nov 14, 2023
2 parents 05afe90 + 5bc1d4f commit a22b788
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 1 deletion.
5 changes: 5 additions & 0 deletions lens/column.ml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
open Lens_utility
module Type = Phrase_type

(* Workaround for issue #1187 (i.e., the @@deriving sexp clause on t
below creates code triggering warning 40 otherwise) *)
open Sexplib0.Sexp_conv_record.Fields
open Sexplib0.Sexp_conv_record.Kind

type t = {
table : string;
name : string;
Expand Down
5 changes: 5 additions & 0 deletions lens/database.ml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ open Operators
open Lens_utility
module LPV = Phrase_value

(* Workaround for issue #1187 (i.e., the @@deriving sexp clause on t
below creates code triggering warning 40 otherwise) *)
open Sexplib0.Sexp_conv_record.Fields
open Sexplib0.Sexp_conv_record.Kind

type t = {
serialize : unit -> string;
driver_name : unit -> string;
Expand Down
5 changes: 5 additions & 0 deletions lens/sort.ml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ open Lens_utility
open Lens_utility.O
module Column = Column

(* Workaround for issue #1187 (i.e., the @@deriving sexp clause on t
below creates code triggering warning 40 otherwise) *)
open Sexplib0.Sexp_conv_record.Fields
open Sexplib0.Sexp_conv_record.Kind

type t = {
fds : Fun_dep.Set.t;
predicate : Phrase.t option;
Expand Down
5 changes: 5 additions & 0 deletions lens/value.ml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
open Lens_utility

(* Workaround for issue #1187 (i.e., the @@deriving sexp clause on t
below creates code triggering warning 40 otherwise) *)
open Sexplib0.Sexp_conv_record.Fields
open Sexplib0.Sexp_conv_record.Kind

type t =
| Lens of { table : Database.Table.t; sort : Sort.t }
| LensMem of { records : Phrase_value.t list; sort : Sort.t }
Expand Down
2 changes: 1 addition & 1 deletion links.opam
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ depends: [
"result"
"ocamlfind"
"menhir" {>= "20210419"}
"ppx_sexp_conv" {<= "v0.15.1"}
"ppx_sexp_conv" {>= "v0.16.0"}
"calendar" {>= "2.0.4"}
"rdf_lwt" {>= "0.13.0"}
]

0 comments on commit a22b788

Please sign in to comment.