Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ibis_cloud_spanner folder added #186

Merged
merged 15 commits into from Mar 9, 2021
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions third_party/ibis/ibis_cloud_spanner/__init__.py
@@ -0,0 +1,2 @@


93 changes: 93 additions & 0 deletions third_party/ibis/ibis_cloud_spanner/api.py
@@ -0,0 +1,93 @@
# Copyright 2021 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.



"""CloudScanner public API."""
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"""CloudScanner public API."""
"""Cloud Spanner public API."""



from third_party.ibis.ibis_cloud_spanner.client import CloudSpannerClient
from third_party.ibis.ibis_cloud_spanner.compiler import dialect
from ibis.config import options
from typing import Optional

import google.cloud.spanner # noqa: F401, fail early if spanner is missing
import ibis.common.exceptions as com
import pydata_google_auth





__all__ = ('compile', 'connect', 'verify', ''
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's the trailing empty string(s) '' about? Seems like these should be removed.

''
''
''
''
'')


def compile(expr, params=None):
"""Compile an expression for Cloud Spanner.

Returns
-------
compiled : str

See Also
--------
ibis.expr.types.Expr.compile

"""
from third_party.ibis.ibis_cloud_spanner.compiler import to_sql

return to_sql(expr, dialect.make_context(params=params))


def verify(expr, params=None):
"""Check if an expression can be compiled using Cloud Spanner."""
try:
compile(expr, params=params)
return True
except com.TranslationError:
return False




def connect(
instance_id: Optional[str] = None,
database_id: Optional[str] = None,

) -> CloudSpannerClient:
"""Create a CloudSpannerClient for use with Ibis.

Parameters
----------
instance_id : str
A Cloud Spanner Instance id.
database_id : str
A database id that lives inside of the Cloud Spanner Instance indicated by
`instance_id`.

Returns
-------
CloudSpannerClient

"""

return CloudSpannerClient(
instance_id=instance_id, database_id=database_id
)