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:
@@ -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'
|
||||
}])
|
||||
})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user