File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,6 @@ Description : Helper functions for PostgREST.QueryBuilder.
88module PostgREST.Query.SqlFragment
99 ( TrackedSnippet (.. )
1010 , emptyTracked
11- , trackParam
12- , trackParams
1311 , rawSQL
1412 , fromSnippet
1513 , toSnippet
@@ -118,14 +116,6 @@ emptyTracked = TrackedSnippet mempty []
118116rawSQL :: ByteString -> TrackedSnippet
119117rawSQL sql = TrackedSnippet (SQL. sql sql) []
120118
121- -- | Track a single parameter with its SQL snippet
122- trackParam :: ByteString -> SQL. Snippet -> TrackedSnippet
123- trackParam param snip = TrackedSnippet snip [Just param]
124-
125- -- | Track multiple parameters with their descriptions and encoder
126- trackParams :: [Maybe ByteString ] -> SQL. Snippet -> TrackedSnippet
127- trackParams params snip = TrackedSnippet snip params
128-
129119-- | Convert SQL.Snippet to TrackedSnippet (for backward compatibility)
130120fromSnippet :: SQL. Snippet -> TrackedSnippet
131121fromSnippet snip = TrackedSnippet snip []
You can’t perform that action at this time.
0 commit comments