1
0
mirror of https://github.com/lana-k/sqliteviz.git synced 2025-12-07 02:28:54 +08:00

Upgrade to SQLite 3.38.5 (#91)

* Update to SQLite 3.37 and latest generate_series extension

* Expect column types in upper case

* Rebuild newer SQLite, 3.38.5
This commit is contained in:
saaj
2022-06-27 17:35:40 +02:00
committed by GitHub
parent f0a4212e2b
commit 5f2b8ba5a9
7 changed files with 35 additions and 12 deletions

View File

@@ -44,7 +44,7 @@ describe('database.js', () => {
expect(schema[0].columns[0].type).to.equal('N/A')
expect(schema[0].columns[1].name).to.equal('col2')
expect(schema[0].columns[1].type).to.equal('integer')
expect(schema[0].columns[1].type).to.equal('INTEGER')
})
it('creates schema with view', async () => {
@@ -68,12 +68,12 @@ describe('database.js', () => {
expect(schema[0].columns[1]).to.eql({
name: 'col2',
type: 'integer'
type: 'INTEGER'
})
expect(schema[1].columns).to.eql([{
name: 'amount',
type: 'integer'
type: 'INTEGER'
}])
})