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 support for query parameters #2776

Merged
merged 20 commits into from
Dec 2, 2016
Merged

Add support for query parameters #2776

merged 20 commits into from
Dec 2, 2016

Commits on Nov 28, 2016

  1. Add 'ScalarQueryParameter' class.

    Holds name, type, and value for scalar query parameters, and handles
    marshalling them to / from JSON representation mandated by the BigQuery API.
    
    Toward #2551.
    tseaver committed Nov 28, 2016
    Configuration menu
    Copy the full SHA
    128db62 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3421d7a View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2016

  1. Add 'ArrayQueryParameter' class.

    Holds name, type, and value for array query parameters, and handles
    marshalling them to / from JSON representation mandated by the BigQuery API.
    
    Toward #2551.
    tseaver committed Nov 29, 2016
    Configuration menu
    Copy the full SHA
    57c61c1 View commit details
    Browse the repository at this point in the history
  2. Add 'StructQueryParameter' class.

    Holds name, types, and values for Struct query parameters, and handles
    marshalling them to / from JSON representation mandated by the BigQuery API.
    
    Toward #2551.
    tseaver committed Nov 29, 2016
    Configuration menu
    Copy the full SHA
    6650c59 View commit details
    Browse the repository at this point in the history
  3. Remove '_build_udf_resources' helper.

    It is just a list comprehension, really.
    tseaver committed Nov 29, 2016
    Configuration menu
    Copy the full SHA
    fcff570 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2e06228 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    968582f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    52b25ec View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    9089907 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    9fd7f76 View commit details
    Browse the repository at this point in the history
  9. Address code review.

    tseaver committed Nov 29, 2016
    Configuration menu
    Copy the full SHA
    1df82a0 View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2016

  1. Configuration menu
    Copy the full SHA
    6191ca6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    89f5a58 View commit details
    Browse the repository at this point in the history
  3. PEP8.

    Addresses:
    #2776 (comment).
    tseaver committed Nov 30, 2016
    Configuration menu
    Copy the full SHA
    a4ff964 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d4d451e View commit details
    Browse the repository at this point in the history
  5. s/parm/param/.

    Addresses:
    #2776 (comment)
    tseaver committed Nov 30, 2016
    Configuration menu
    Copy the full SHA
    0f61970 View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2016

  1. Update docstring to show standard-SQL 'BOOL' type.

    The back-end raises an exception when passed the 'BOOLEAN' type to define
    a query parameter.
    
    Addresses:
    #2776 (comment)
    tseaver committed Dec 1, 2016
    Configuration menu
    Copy the full SHA
    524baf1 View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2016

  1. Indentation fix.

    tseaver committed Dec 2, 2016
    Configuration menu
    Copy the full SHA
    4b2cb13 View commit details
    Browse the repository at this point in the history
  2. Preserve OrderedDict for struct_types.

    Addresses:
    #2776 (comment).
    tseaver committed Dec 2, 2016
    Configuration menu
    Copy the full SHA
    99bdcd1 View commit details
    Browse the repository at this point in the history
  3. Normalize '%' formatting.

    Addresses:
    #2776 (comment).
    tseaver committed Dec 2, 2016
    Configuration menu
    Copy the full SHA
    132741a View commit details
    Browse the repository at this point in the history