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
@@ -145,23 +157,23 @@ public void failTestInTableModel() throws SQLException {
145
157
privatevoidfailTest(Statementstatement) {
146
158
errorTest(
147
159
statement,
148
-
"LOAD MODEL unknown TO DEVICES \"cpu,0,1\"",
149
-
"1505: Cannot load model [unknown], because it is neither a built-in nor a fine-tuned model. You can use 'SHOW MODELS' to retrieve the available models.");
160
+
"LOAD MODEL unknown TO DEVICES 'cpu,0,1'",
161
+
"1504: Model [unknown]is not registered yet. You can use 'SHOW MODELS' to retrieve the available models.");
150
162
errorTest(
151
163
statement,
152
-
"LOAD MODEL sundial TO DEVICES \"unknown\"",
153
-
"1507: Device ID [unknown] is not available. You can use 'SHOW AI_DEVICES' to retrieve the available devices.");
164
+
"LOAD MODEL sundial TO DEVICES '999'",
165
+
"1508: AIDevice ID [999] is not available. You can use 'SHOW AI_DEVICES' to retrieve the available devices.");
154
166
errorTest(
155
167
statement,
156
-
"UNLOAD MODEL sundial FROM DEVICES \"unknown\"",
157
-
"1507: Device ID [unknown] is not available. You can use 'SHOW AI_DEVICES' to retrieve the available devices.");
168
+
"UNLOAD MODEL sundial FROM DEVICES '999'",
169
+
"1508: AIDevice ID [999] is not available. You can use 'SHOW AI_DEVICES' to retrieve the available devices.");
158
170
errorTest(
159
171
statement,
160
-
"LOAD MODEL sundial TO DEVICES \"0,0\"",
172
+
"LOAD MODEL sundial TO DEVICES '0,0'",
161
173
"1509: Device ID list contains duplicate entries.");
162
174
errorTest(
163
175
statement,
164
-
"UNLOAD MODEL sundial FROM DEVICES \"0,0\"",
176
+
"UNLOAD MODEL sundial FROM DEVICES '0,0'",
165
177
"1510: Device ID list contains duplicate entries.");
0 commit comments