File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 44
44
run : go-acc . -- -race -v -tags "libsqlite3"
45
45
46
46
- name : ' Tags: full'
47
- run : go-acc . -- -race -v -tags "sqlite_allow_uri_authority sqlite_app_armor sqlite_column_metadata sqlite_foreign_keys sqlite_fts5 sqlite_icu sqlite_introspect sqlite_json sqlite_math_functions sqlite_os_trace sqlite_preupdate_hook sqlite_secure_delete sqlite_see sqlite_stat4 sqlite_trace sqlite_unlock_notify sqlite_userauth sqlite_vacuum_incr sqlite_vtable"
47
+ run : go-acc . -- -race -v -tags "sqlite_allow_uri_authority sqlite_app_armor sqlite_column_metadata sqlite_foreign_keys sqlite_fts5 sqlite_icu sqlite_introspect sqlite_json sqlite_math_functions sqlite_os_trace sqlite_preupdate_hook sqlite_secure_delete sqlite_see sqlite_stat4 sqlite_trace sqlite_unlock_notify sqlite_vacuum_incr sqlite_vtable"
48
48
49
49
- name : ' Tags: vacuum'
50
50
run : go-acc . -- -race -v -tags "sqlite_vacuum_full"
99
99
- name : ' Tags: full'
100
100
run : |
101
101
echo 'skip this test'
102
- echo go build -race -v -tags "sqlite_allow_uri_authority sqlite_app_armor sqlite_column_metadata sqlite_foreign_keys sqlite_fts5 sqlite_icu sqlite_introspect sqlite_json sqlite_math_functions sqlite_preupdate_hook sqlite_secure_delete sqlite_see sqlite_stat4 sqlite_trace sqlite_unlock_notify sqlite_userauth sqlite_vacuum_incr sqlite_vtable"
102
+ echo go build -race -v -tags "sqlite_allow_uri_authority sqlite_app_armor sqlite_column_metadata sqlite_foreign_keys sqlite_fts5 sqlite_icu sqlite_introspect sqlite_json sqlite_math_functions sqlite_preupdate_hook sqlite_secure_delete sqlite_see sqlite_stat4 sqlite_trace sqlite_unlock_notify sqlite_vacuum_incr sqlite_vtable"
103
103
shell : msys2 {0}
104
104
105
105
- name : ' Tags: vacuum'
Original file line number Diff line number Diff line change @@ -1568,11 +1568,9 @@ func (d *SQLiteDriver) Open(dsn string) (driver.Conn, error) {
1568
1568
}
1569
1569
}
1570
1570
1571
- if conn .AuthEnabled () {
1572
- // Preform Authentication
1573
- if err := conn .Authenticate (authUser , authPass ); err != nil {
1574
- return nil , err
1575
- }
1571
+ // Preform Authentication
1572
+ if err := conn .Authenticate (authUser , authPass ); err != nil {
1573
+ return nil , err
1576
1574
}
1577
1575
1578
1576
// Register: authenticate
You can’t perform that action at this time.
0 commit comments