OutputArtifacts

  • Output artifacts such as temporary tables are generated during query execution in Ads Data Hub.

  • Temporary tables are created using the syntax CREATE TABLE temp_table AS (...) within an Ads Data Hub query.

  • JSON representation is used to define the structure of these temporary tables within the query's output.

  • The tempTables[] field within the JSON structure provides a list of all temporary tables created by the query, each represented as a TempTable object.

Output artifacts created during query execution, e.g. Temp tables are created using CREATE TABLE temp_table AS (...) in an Ads Data Hub query.

JSON representation
{
  "tempTables": [
    {
      object (TempTable)
    }
  ]
}
Fields
tempTables[]

object (TempTable)

Defines list of temp tables created by an Ads Data Hub query.