Fix style check

This commit is contained in:
kssenii 2024-11-13 20:12:52 +01:00
parent 6dfd4ad942
commit 58edfbe113
2 changed files with 5 additions and 4 deletions

View File

@ -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>(

View File

@ -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