Skip to content

Commit 95f6157

Browse files
typo
1 parent cbab93c commit 95f6157

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

query/src/org/labkey/query/controllers/QueryMcp.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ String validateCalculatedColumnExpression(
222222
"Fields containing tabs, newlines, or double-quotes are RFC 4180 quoted. " +
223223
"On SQL error, the error message is returned as plain text rather than throwing. " +
224224
"For data analysis or bulk retrieval, use the LabKey Python or R client APIs instead of this tool. " +
225-
"**Important** This tools does not yet support queries with named parameters.")
225+
"**Important** This tool does not yet support queries with named parameters.")
226226
@RequiresPermission(ReadPermission.class)
227227
String executeSQL(
228228
ToolContext toolContext,

query/src/org/labkey/query/controllers/SqlController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,7 @@ private MockHttpServletResponse executeSql(String schemaName, String sql, Format
640640
}
641641

642642
@Test
643-
public void testExecute_mssql() throws Exception
643+
public void testExecute_basic() throws Exception
644644
{
645645
MockHttpServletResponse response = executeSql("lists",
646646
"SELECT Name, Age, Score FROM " + LIST_NAME + " ORDER BY Name", Format.split);
@@ -685,7 +685,7 @@ public void testExecute() throws Exception
685685
{
686686
if (!CoreSchema.getInstance().getSqlDialect().isPostgreSQL())
687687
{
688-
testExecute_mssql();
688+
testExecute_basic();
689689
return;
690690
}
691691

0 commit comments

Comments
 (0)