-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
237a5fd
commit 4d8b290
Showing
7 changed files
with
23 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ logger: | |
metrics_server: | ||
endpoint: | ||
host: "0.0.0.0" | ||
port: 8766 | ||
port: 8767 | ||
|
||
pprof_server: | ||
endpoint: | ||
|
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,11 @@ | ||
CREATE OBJECT local_password (TYPE SECRET) WITH (value = "password"); | ||
|
||
CREATE EXTERNAL DATA SOURCE external_datasource WITH ( | ||
SOURCE_TYPE="ClickHouse", | ||
LOCATION="localhost:9000", | ||
AUTH_METHOD="BASIC", | ||
PROTOCOL="NATIVE", | ||
LOGIN="admin", | ||
DATABASE_NAME="default", | ||
PASSWORD_SECRET_NAME="local_password" | ||
); |
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,2 @@ | ||
--SELECT * FROM external_datasource.example_table WHERE datetimeValue = Timestamp("2023-12-31T15:00:00.000000Z"); | ||
SELECT * FROM external_datasource.example_table; |
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 |
---|---|---|
@@ -1 +1 @@ | ||
SELECT * FROM mysql_external_datasource.simple; | ||
SELECT * FROM mysql_external_datasource.datetimes; |
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
SELECT * FROM external_datasource.`datetime` WHERE col_01_timestamp = Timestamp("1988-11-20T12:55:28.123Z"); | ||
-- SELECT * FROM external_datasource.`datetime` WHERE col_01_timestamp = Timestamp("1988-11-20T12:55:28.123Z"); | ||
SELECT * FROM external_datasource.`datetime`; |
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