You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Invoke-DbaQuery-SqlInstance $TestConfig.instance2-SqlCredential $TestConfig.SqlCredential-Database $db-Query "select * from people where fname = 'Joe'"| Should -Not-Be $null
68
72
Invoke-DbaQuery-SqlInstance $TestConfig.instance2-SqlCredential $TestConfig.SqlCredential-Database $db-Query "select * from people where lname = 'Schmee'"| Should -Not-Be $null
73
+
Invoke-DbaQuery-SqlInstance $TestConfig.instance2-SqlCredential $TestConfig.SqlCredential-Database $db-Query "select * from people where percenttest = 29.53"| Should -Not-Be $null
74
+
Invoke-DbaQuery-SqlInstance $TestConfig.instance2-SqlCredential $TestConfig.SqlCredential-Database $db-Query "select * from people where percenttest = 65.38"| Should -Not-Be $null
75
+
Invoke-DbaQuery-SqlInstance $TestConfig.instance2-SqlCredential $TestConfig.SqlCredential-Database $db-Query "select * from people where bittest = 1 AND lname = 'Schmoe'"| Should -Not-Be $null
76
+
Invoke-DbaQuery-SqlInstance $TestConfig.instance2-SqlCredential $TestConfig.SqlCredential-Database $db-Query "select * from people where bittest = 0 AND lname = 'Schmee'"| Should -Not-Be $null
Invoke-DbaQuery-SqlInstance $TestConfig.instance2-SqlCredential $TestConfig.SqlCredential-Database $db-Query "select * from people"| Should -Not-Be $null
84
92
Invoke-DbaQuery-SqlInstance $TestConfig.instance2-SqlCredential $TestConfig.SqlCredential-Database $db-Query "select * from people where fname = 'Joe'"| Should -Be $null
85
93
Invoke-DbaQuery-SqlInstance $TestConfig.instance2-SqlCredential $TestConfig.SqlCredential-Database $db-Query "select * from people where lname = 'Schmee'"| Should -Be $null
94
+
Invoke-DbaQuery-SqlInstance $TestConfig.instance2-SqlCredential $TestConfig.SqlCredential-Database $db-Query "select * from people where percenttest = 29.53"| Should -Be $null
95
+
Invoke-DbaQuery-SqlInstance $TestConfig.instance2-SqlCredential $TestConfig.SqlCredential-Database $db-Query "select * from people where percenttest = 65.38"| Should -Be $null
96
+
Invoke-DbaQuery-SqlInstance $TestConfig.instance2-SqlCredential $TestConfig.SqlCredential-Database $db-Query "select * from people where bittest = 1 AND lname = 'Schmoe'"| Should -Be $null
97
+
Invoke-DbaQuery-SqlInstance $TestConfig.instance2-SqlCredential $TestConfig.SqlCredential-Database $db-Query "select * from people where bittest = 0 AND lname = 'Schmee'"| Should -Be $null
0 commit comments