Chore: Remvoe newDBLibrary feature flag (#78074)

This commit is contained in:
Ryan McKinley
2023-11-14 06:51:35 -08:00
committed by GitHub
parent 580477bf8e
commit a221c1d754
8 changed files with 4 additions and 26 deletions

View File

@@ -104,13 +104,6 @@ var sqlStoreTestCases = []sqlStoreTest{
features: featuremgmt.WithFeatures(featuremgmt.FlagMysqlAnsiQuotes),
expConnStr: ":@tcp([::1])/test_db?collation=utf8mb4_unicode_ci&allowNativePasswords=true&clientFoundRows=true&sql_mode='ANSI_QUOTES'",
},
{
name: "New DB library",
dbType: "mysql",
dbHost: "[::1]",
features: featuremgmt.WithFeatures(featuremgmt.FlagNewDBLibrary),
expConnStr: ":@tcp([::1])/test_db?collation=utf8mb4_unicode_ci&allowNativePasswords=true&clientFoundRows=true&sql_mode='ANSI_QUOTES'&parseTime=true",
},
}
func TestIntegrationSQLConnectionString(t *testing.T) {