Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
hovaesco committed Jul 13, 2023
1 parent b60be2c commit f2558e6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions trino/sqlalchemy/dialect.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import json
import warnings
from textwrap import dedent
from typing import Any, Dict, List, Mapping, Optional, Sequence, Tuple, Union
from urllib.parse import unquote_plus
Expand All @@ -27,6 +28,8 @@
from trino.sqlalchemy import compiler, datatype, error

logger = logging.get_logger(__name__)
with warnings.catch_warnings():
warnings.simplefilter("ignore", category=exc.SAWarning)


class TrinoDialect(DefaultDialect):
Expand Down

0 comments on commit f2558e6

Please sign in to comment.