We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2933a8 commit 6ef65f5Copy full SHA for 6ef65f5
internal/engine/sqlite/convert.go
@@ -128,7 +128,7 @@ func (c *cc) convertCreate_table_stmtContext(n *parser.Create_table_stmtContext)
128
}
129
130
func (c *cc) convertCreate_virtual_table_stmtContext(n *parser.Create_virtual_table_stmtContext) ast.Node {
131
- switch moduleName := n.Module_name().GetText(); moduleName {
+ switch moduleName := strings.ToLower(n.Module_name().GetText()); moduleName {
132
case "fts5":
133
// https://www.sqlite.org/fts5.html
134
return c.convertCreate_virtual_table_fts5(n)
0 commit comments