Skip to content

Commit e274099

Browse files
committed
Fix Oracle query
1 parent 643739b commit e274099

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

QueryDB.Core.Tests/Queries.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ internal static class DDL
9090
public static string Truncate_Table = @"TRUNCATE TABLE Employee";
9191
public static string Rename_Table = @"RENAME Employee TO Employees";
9292
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}')";
93+
public static string DDL_Execute_check = @"SELECT COUNT(*) AS Table_Count FROM user_tables WHERE LOWER(table_Name) = LOWER('{0}')";
9494
}
9595
}
9696
}

0 commit comments

Comments
 (0)