Skip to content

Commit 07bce99

Browse files
committed
add header doc
1 parent c9276cf commit 07bce99

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+96
-0
lines changed

third_party/bigframes_vendored/sqlglot/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Contains code from https://github.com/tobymao/sqlglot/blob/v28.5.0/sqlglot/__init__.py
2+
13
# ruff: noqa: F401
24
"""
35
.. include:: ../README.md

third_party/bigframes_vendored/sqlglot/__main__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Contains code from https://github.com/tobymao/sqlglot/blob/v28.5.0/sqlglot/__main__.py
2+
13
from __future__ import annotations
24

35
import argparse

third_party/bigframes_vendored/sqlglot/dialects/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Contains code from https://github.com/tobymao/sqlglot/blob/v28.5.0/sqlglot/dialects/__init__.py
2+
13
# ruff: noqa: F401
24
"""
35
## Dialects

third_party/bigframes_vendored/sqlglot/dialects/bigquery.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Contains code from https://github.com/tobymao/sqlglot/blob/v28.5.0/sqlglot/dialects/bigquery.py
2+
13
from __future__ import annotations
24

35
import logging

third_party/bigframes_vendored/sqlglot/dialects/dialect.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Contains code from https://github.com/tobymao/sqlglot/blob/v28.5.0/sqlglot/dialects/dialect.py
2+
13
from __future__ import annotations
24

35
from enum import auto, Enum

third_party/bigframes_vendored/sqlglot/diff.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Contains code from https://github.com/tobymao/sqlglot/blob/v28.5.0/sqlglot/diff.py
2+
13
"""
24
.. include:: ../posts/sql_diff.md
35

third_party/bigframes_vendored/sqlglot/errors.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Contains code from https://github.com/tobymao/sqlglot/blob/v28.5.0/sqlglot/errors.py
2+
13
from __future__ import annotations
24

35
from enum import auto

third_party/bigframes_vendored/sqlglot/executor/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Contains code from https://github.com/tobymao/sqlglot/blob/v28.5.0/sqlglot/executor/__init__.py
2+
13
"""
24
.. include:: ../../posts/python_sql_engine.md
35

third_party/bigframes_vendored/sqlglot/executor/context.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Contains code from https://github.com/tobymao/sqlglot/blob/v28.5.0/sqlglot/executor/context.py
2+
13
from __future__ import annotations
24

35
import typing as t

third_party/bigframes_vendored/sqlglot/executor/env.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Contains code from https://github.com/tobymao/sqlglot/blob/v28.5.0/sqlglot/executor/env.py
2+
13
import datetime
24
from functools import wraps
35
import inspect

0 commit comments

Comments
 (0)