We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 643739b commit e274099Copy full SHA for e274099
QueryDB.Core.Tests/Queries.cs
@@ -90,7 +90,7 @@ internal static class DDL
90
public static string Truncate_Table = @"TRUNCATE TABLE Employee";
91
public static string Rename_Table = @"RENAME Employee TO Employees";
92
public static string Drop_Table = @"DROP TABLE Employees";
93
- public static string DDL_Execute_check = @"SELECT COUNT(*) FROM user_tables WHERE LOWER(table_Name) = LOWER('{0}')";
+ public static string DDL_Execute_check = @"SELECT COUNT(*) AS Table_Count FROM user_tables WHERE LOWER(table_Name) = LOWER('{0}')";
94
}
95
96
0 commit comments