8000 Make it so subqueries do not rewrite top-level queryId by Medvecrab · Pull Request #78 · postgrespro/pg_wait_sampling · GitHub
[go: up one dir, main page]

Skip to content

Make it so subqueries do not rewrite top-level queryId #78

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

Merged
merged 2 commits into from
Jun 17, 2024

Make so subqueries do not rewrite queryId of top-level query

0b5c61b
Select commit
Loading
Failed to load commit list.
Merged

Make it so subqueries do not rewrite top-level queryId #78

Make so subqueries do not rewrite queryId of top-level query
0b5c61b
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Jun 17, 2024 in 4m 33s

Build Passed

The build passed, just like the previous build.

Details

This is a normal build for the track_top_level_queryid branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build has six jobs, running in parallel.

Job ENV OS State
251.1 PG_MAJOR=17 BETA=1 Linux passed
251.2 PG_MAJOR=16 Linux passed
251.3 PG_MAJOR=15 Linux passed
251.4 PG_MAJOR=14 Linux passed
251.5 PG_MAJOR=13 Linux passed
251.6 PG_MAJOR=12 Linux passed

Build Configuration

Build Option Setting
Language C
Operating System Linux (Jammy)
Build Configuration
{
  "language": "c",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "env": [
    "jobs={:PG_MAJOR=>\"17\", :BETA=>\"1\"}={:PG_MAJOR=>\"16\"}={:PG_MAJOR=>\"15\"}={:PG_MAJOR=>\"14\"}={:PG_MAJOR=>\"13\"}={:PG_MAJOR=>\"12\"}"
  ],
  "before_script": [
    "curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -",
    "echo \"deb https://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main\" | sudo tee -a /etc/apt/sources.list",
    "if [ -n \"${BETA}\" ]; then echo \"deb https://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main ${PG_MAJOR}\" | sudo tee -a /etc/apt/sources.list; fi",
    "sudo apt-get update",
    "sudo systemctl stop postgresql",
    "sudo apt-get install -y --no-install-recommends postgresql-client-${PG_MAJOR} postgresql-${PG_MAJOR} postgresql-server-dev-${PG_MAJOR}",
    "sudo systemctl stop postgresql"
  ],
  "script": [
    "./run-tests.sh"
  ],
  "after_script": [
    "cat regression.diffs",
    "cat logfile"
  ]
}
0