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
assert.deepStrictEqual(parts.join("?"),"SELECT t._col1_,t._col2_,t._col3_ FROM table1 t\nORDER BY t._col1_ ASC\nOFFSET 0 ROWS\nFETCH NEXT 100 ROWS ONLY");
274
+
assert.deepStrictEqual(
275
+
parts.join("?"),
276
+
"SELECT t._col1_,t._col2_,t._col3_ FROM table1 t\nORDER BY t._col1_ ASC\nOFFSET 0 ROWS\nFETCH NEXT 100 ROWS ONLY"
277
+
);
266
278
});
267
279
268
280
it("makeQueryTemplate select, sort, slice, filter indexed with mssql syntax",()=>{
0 commit comments