1
0
mirror of https://github.com/lana-k/sqliteviz.git synced 2025-12-06 18:18:53 +08:00

minor changes

This commit is contained in:
lana-k
2020-12-27 18:31:28 +01:00
parent dc3979584c
commit 08e4f5333d

View File

@@ -70,9 +70,9 @@ function getAst (sql) {
return sqliteParser(fixedSql) return sqliteParser(fixedSql)
} }
/* /*
* Return an array of columns with name and type. E.g.: * Return an array of columns with name and type. E.g.:
* [ * [
* { name: 'id', type: 'INTEGER' }, * { name: 'id', type: 'INTEGER' },
* { name: 'title', type: 'NVARCHAR(30)' }, * { name: 'title', type: 'NVARCHAR(30)' },
* ] * ]