-
Notifications
You must be signed in to change notification settings - Fork 392
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'devel' into CB-4836-jetty-cache-not-cleared
- Loading branch information
Showing
8 changed files
with
117 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<artifactId>drivers.kyuubi</artifactId> | ||
<version>1.0.0</version> | ||
<parent> | ||
<groupId>io.cloudbeaver</groupId> | ||
<artifactId>drivers</artifactId> | ||
<version>1.0.0</version> | ||
<relativePath>../</relativePath> | ||
</parent> | ||
|
||
<properties> | ||
<deps.output.dir>kyuubi</deps.output.dir> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.kyuubi</groupId> | ||
<artifactId>kyuubi-hive-jdbc-shaded</artifactId> | ||
<version>1.9.0</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
webapp/packages/plugin-log-viewer/src/LogViewer/LogViewerTable.m.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* | ||
* CloudBeaver - Cloud Database Manager | ||
* Copyright (C) 2020-2024 DBeaver Corp and others | ||
* | ||
* Licensed under the Apache License, Version 2.0. | ||
* you may not use this file except in compliance with the License. | ||
*/ | ||
|
||
.wrapper { | ||
overflow: hidden; | ||
height: 100%; | ||
width: 100%; | ||
} | ||
|
||
.table { | ||
flex: 1 1 auto; | ||
width: 100%; | ||
} | ||
|
||
.tableWrapper { | ||
height: 100%; | ||
} | ||
|
||
.messageTitleBox { | ||
display: flex; | ||
align-items: center; | ||
|
||
.messageTitle { | ||
flex: 1; | ||
} | ||
} | ||
|
||
.tableColumnHeader { | ||
white-space: nowrap; | ||
text-overflow: ellipsis; | ||
} | ||
|
||
.tableColumnHeaderMin { | ||
width: 32px; | ||
} | ||
|
||
.timestamp { | ||
width: 116px; | ||
min-width: 116px; | ||
} | ||
|
||
.clearButton { | ||
position: absolute !important; | ||
top: 4px; | ||
right: 16px; | ||
z-index: 100; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters