East2West
East2West

Reputation: 667

Big query decorator applicable for views?

Is big query table decorator applicable for views?

If so, how it is interpreted for multiple tables in a view?

Upvotes: 0

Views: 108

Answers (1)

Jordan Tigani
Jordan Tigani

Reputation: 26617

Using a decorator with a view won't have any meaning, since views don't have snapshot versions the way tables do. You can create a view that uses relative time table decorators, and those should be fine (they'll be evaluated at the time of the query).

Upvotes: 1

Related Questions