You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2026-06-20 09:19:27 +02:00
15 lines
461 B
Plaintext
Vendored
15 lines
461 B
Plaintext
Vendored
// Minimal structure
|
|
|
|
TableName = "external_data";
|
|
ColoumnsStruct = New Structure;
|
|
ColoumnsStruct.Insert("id" , "UInt64");
|
|
ColoumnsStruct.Insert("name", "String");
|
|
|
|
Result = OPI_ClickHouse.GetExternalTableStructure(TableName, ColoumnsStruct);
|
|
|
|
// With TSV data
|
|
|
|
TableData = StrTemplate("1%1Test
|
|
|2%2Test2", Chars.Tab);
|
|
|
|
Result = OPI_ClickHouse.GetExternalTableStructure(TableName, ColoumnsStruct, TableData, "TSV"); |