comparison src/settings.sml @ 880:8e9f2d247dba

Testing nested queries
author Adam Chlipala <adamc@hcoop.net>
date Fri, 17 Jul 2009 12:25:34 -0400
parents b2a175a0f2ef
children 9c1b7e46eed2
comparison
equal deleted inserted replaced
879:b2a175a0f2ef 880:8e9f2d247dba
319 prepared : (string * int) list, 319 prepared : (string * int) list,
320 tables : (string * (string * sql_type) list) list, 320 tables : (string * (string * sql_type) list) list,
321 views : (string * (string * sql_type) list) list, 321 views : (string * (string * sql_type) list) list,
322 sequences : string list} -> Print.PD.pp_desc, 322 sequences : string list} -> Print.PD.pp_desc,
323 query : {loc : ErrorMsg.span, cols : sql_type list, 323 query : {loc : ErrorMsg.span, cols : sql_type list,
324 doCols : ({wontLeakStrings : bool, col : int, typ : sql_type} -> Print.PD.pp_desc) 324 doCols : ({loc : ErrorMsg.span, wontLeakStrings : bool, col : int, typ : sql_type} -> Print.PD.pp_desc)
325 -> Print.PD.pp_desc} 325 -> Print.PD.pp_desc}
326 -> Print.PD.pp_desc, 326 -> Print.PD.pp_desc,
327 queryPrepared : {loc : ErrorMsg.span, id : int, query : string, 327 queryPrepared : {loc : ErrorMsg.span, id : int, query : string,
328 inputs : sql_type list, cols : sql_type list, 328 inputs : sql_type list, cols : sql_type list,
329 doCols : ({wontLeakStrings : bool, col : int, typ : sql_type} -> Print.PD.pp_desc) 329 doCols : ({loc : ErrorMsg.span, wontLeakStrings : bool, col : int,
330 typ : sql_type} -> Print.PD.pp_desc)
330 -> Print.PD.pp_desc, 331 -> Print.PD.pp_desc,
331 nested : bool} 332 nested : bool}
332 -> Print.PD.pp_desc, 333 -> Print.PD.pp_desc,
333 dml : ErrorMsg.span -> Print.PD.pp_desc, 334 dml : ErrorMsg.span -> Print.PD.pp_desc,
334 dmlPrepared : {loc : ErrorMsg.span, id : int, dml : string, 335 dmlPrepared : {loc : ErrorMsg.span, id : int, dml : string,