( context: Context, node: QueryString | QueryRegex, col: RawBuilder<unknown>, )
| 815 | } |
| 816 | |
| 817 | function handleTagCount( |
| 818 | context: Context, |
| 819 | node: QueryString | QueryRegex, |
| 820 | col: RawBuilder<unknown>, |
| 821 | ) { |
| 822 | if (node.type === 'Regex' || node.comparison == null) throwExp() |
| 823 | context.parameterizeSql( |
| 824 | sql`${col} ${sql.raw(node.comparison)} ${parseInt(node.value)}`, |
| 825 | ) |
| 826 | } |
| 827 | |
| 828 | function handleCreatedEditedDue( |
| 829 | node: Node, |
no test coverage detected