• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1syntax = "proto3";
2
3package tensorflow;
4
5// This proto specifies a table partition in BigQuery.
6message BigQueryTablePartition {
7  // [start_index, end_index] specify the boundaries of a partition.
8  // If end_index is -1, every row starting from start_index is part of the
9  // partition.
10  int64 start_index = 1;
11  int64 end_index = 2;
12};
13