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

Add read_avro and list_avro_columns for rework on Splittable Avro support #399

Merged
merged 1 commit into from
Aug 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tensorflow_io/avro/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ load(
cc_library(
name = "avro_ops",
srcs = [
"kernels/avro_input.cc",
"kernels/avro_kernels.cc",
"ops/avro_ops.cc",
],
copts = tf_io_copts(),
Expand Down
6 changes: 6 additions & 0 deletions tensorflow_io/avro/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,24 @@
"""Avro Dataset.

@@AvroDataset
@@list_avro_columns
@@read_avro
"""

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

from tensorflow_io.avro.python.ops.avro_ops import AvroDataset
from tensorflow_io.avro.python.ops.avro_ops import list_avro_columns
from tensorflow_io.avro.python.ops.avro_ops import read_avro

from tensorflow.python.util.all_util import remove_undocumented

_allowed_symbols = [
"AvroDataset",
"list_avro_columns",
"read_avro_",
]

remove_undocumented(__name__, allowed_exception_list=_allowed_symbols)
248 changes: 0 additions & 248 deletions tensorflow_io/avro/kernels/avro_input.cc

This file was deleted.

Loading