mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
Fix style check
This commit is contained in:
parent
6dfd4ad942
commit
58edfbe113
@ -136,7 +136,7 @@ StoragePtr DatabaseIceberg::tryGetTable(const String & name, ContextPtr context_
|
||||
|
||||
const auto columns = ColumnsDescription(table_metadata.getSchema());
|
||||
const auto configuration = getConfiguration();
|
||||
/// with_table_structure = false: because there will be no table stucture in table definition AST.
|
||||
/// with_table_structure = false: because there will be no table structure in table definition AST.
|
||||
StorageObjectStorage::Configuration::initialize(*configuration, args, context_, /* with_table_structure */false);
|
||||
|
||||
return std::make_shared<StorageObjectStorage>(
|
||||
|
@ -2,9 +2,12 @@ import glob
|
||||
import json
|
||||
import logging
|
||||
import os
|
||||
import random
|
||||
import time
|
||||
import uuid
|
||||
from datetime import datetime, timedelta
|
||||
|
||||
import pyarrow as pa
|
||||
import pytest
|
||||
import requests
|
||||
import urllib3
|
||||
@ -22,9 +25,7 @@ from pyiceberg.types import (
|
||||
StructType,
|
||||
TimestampType,
|
||||
)
|
||||
import pyarrow as pa
|
||||
import random
|
||||
from datetime import datetime, timedelta
|
||||
|
||||
from helpers.cluster import ClickHouseCluster, ClickHouseInstance, is_arm
|
||||
from helpers.s3_tools import get_file_contents, list_s3_objects, prepare_s3_bucket
|
||||
from helpers.test_tools import TSV, csv_compare
|
||||
|
Loading…
Reference in New Issue
Block a user