Skip to content

Commit 1ba3607

Browse files
committed
minor changes
1 parent 13efbd1 commit 1ba3607

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/en/operations/system-tables/exports.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Columns:
1313
- `source_table` ([String](/docs/en/sql-reference/data-types/string.md)) — Name of the source table.
1414
- `destination_database` ([String](/docs/en/sql-reference/data-types/string.md)) — Name of the destination database.
1515
- `destination_table` ([String](/docs/en/sql-reference/data-types/string.md)) — Name of the destination table.
16-
- `create_time` ([DateTime](/docs/en/sql-reference/data-types/datetime.md)) — Date and time when the export command was submitted for execution.
16+
- `create_time` ([DateTime](/docs/en/sql-reference/data-types/datetime.md)) — Date and time when the export command was received in the server.
1717
- `part_name` ([String](/docs/en/sql-reference/data-types/string.md)) — Name of the part.
1818
- `destination_file_path` ([String](/docs/en/sql-reference/data-types/string.md)) — File path relative to where the part is being exported to.
1919
- `elapsed` ([Float64](/docs/en/sql-reference/data-types/float.md)) — The time elapsed (in seconds) since the export started.

src/Storages/System/StorageSystemExports.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ColumnsDescription StorageSystemExports::getColumnsDescription()
2020
{"source_table", std::make_shared<DataTypeString>(), "Name of the source table."},
2121
{"destination_database", std::make_shared<DataTypeString>(), "Name of the destination database."},
2222
{"destination_table", std::make_shared<DataTypeString>(), "Name of the destination table."},
23-
{"create_time", std::make_shared<DataTypeDateTime>(), "Date and time when the export command was submitted for execution."},
23+
{"create_time", std::make_shared<DataTypeDateTime>(), "Date and time when the export command was received in the server."},
2424
{"part_name", std::make_shared<DataTypeString>(), "Name of the part"},
2525
{"destination_file_path", std::make_shared<DataTypeString>(), "File path where the part is being exported."},
2626
{"elapsed", std::make_shared<DataTypeFloat64>(), "The time elapsed (in seconds) since the export started."},

0 commit comments

Comments
 (0)