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
Copy file name to clipboardexpand all lines: core/src/main/java/org/apache/gravitino/storage/relational/mapper/provider/base/TableColumnBaseSQLProvider.java
+2-1
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,8 @@ public String listColumnPOsByTableIdAndVersion(
44
44
+ TableColumnMapper.COLUMN_TABLE_NAME
45
45
+ " WHERE table_id = #{tableId} AND table_version <= #{tableVersion} AND deleted_at = 0"
46
46
+ " GROUP BY column_id) t2"
47
-
+ " ON t1.column_id = t2.column_id AND t1.table_version = t2.max_table_version";
47
+
+ " ON t1.column_id = t2.column_id AND t1.table_version = t2.max_table_version"
0 commit comments