Skip to content

Commit 33b166d

Browse files
committed
Fix Oracle query
1 parent a4e87b0 commit 33b166d

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
@@ -98,7 +98,7 @@ internal static class DDL
9898
internal static string Drop_Table = @"DROP TABLE Employees";
9999
internal static string DDL_Execute_check = @"SELECT COUNT(*) AS Table_Count FROM User_Tables WHERE LOWER(Table_Name) = LOWER('{0}')";
100100
internal static string DDL_Table_Comment_check = @"SELECT Table_Name, Comments AS Table_Comment FROM All_Tab_Comments WHERE LOWER(Table_Name) = LOWER('{0}')";
101-
internal static string DDL_Table_Column_Comment_check = @"SELECT Column_Name, Comments AS Table_Column_Comment FROM All_Col_Comments WHERE LOWER(Table_Name = LOWER('{0}')";
101+
internal static string DDL_Table_Column_Comment_check = @"SELECT Column_Name, Comments AS Table_Column_Comment FROM All_Col_Comments WHERE LOWER(Table_Name) = LOWER('{0}')";
102102
}
103103
}
104104
}

0 commit comments

Comments
 (0)